Fix for Bug 6458 - incorrect parsing result in translation processing
Fixing improperly nested template logic inside markup in header.inc Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
d058b4eee9
commit
7950a8f5af
1 changed files with 5 additions and 1 deletions
|
@ -64,7 +64,11 @@
|
|||
<span class="loggedinusername">
|
||||
[% loggedinusername %]
|
||||
</span>
|
||||
(<a href="/cgi-bin/koha/mainpage.pl?logout.x=1"[% IF ( intranetbookbag ) %] onclick="delBasket(true);"[% END %]>Log Out</a>) |
|
||||
[% IF ( intranetbookbag ) %]
|
||||
(<a href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="delBasket(true);">Log Out</a>) |
|
||||
[% ELSE %]
|
||||
(<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>) |
|
||||
[% END %]
|
||||
[% ELSE %]
|
||||
You are not logged in |
|
||||
[% END %]
|
||||
|
|
Loading…
Reference in a new issue