http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6458 --- Comment #24 from Frère Sébastien Marie <semarie-koha@latrappe.fr> 2011-08-22 04:34:58 UTC --- Comment on attachment 5078 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=5078 Bug 6458: Incorrect parsing result in translation processing Hi, The patch on 'opac-detail.tt' don't preserve the semantic, of original IF/ELSE clause: in the correction the IF clause and the ELSE clause are the same... The code is currently: +[% IF ( defaulttab == 'holdings' ) %]<li class="ui-tabs-selected"> +[% ELSE %]<li class="ui-tabs-selected">[% END %] But it should be: +[% IF ( defaulttab == 'holdings' ) %]<li class="ui-tabs-selected"> +[% ELSE %]<li>[% END %] The same problem occurs for all corrections in opac-detail.tt (but others patchs seems good). -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug.