http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6458
--- Comment #1 from Frère Sébastien Marie <[email protected]> 2011-06-05 12:12:24 UTC --- It seems the problem is in 'misc/translator/TTParser.pm', in the processing of tag (function 'start', for handling opening html tags). It isn't expected to have "template text" at the tag level: <tagname attr1="value1" templateText attr2="value2" ...> So TTParser interprete this as: <tagname attr1="value1" templateText="templateText" attr2="value2" ...> In the reported example: <input type="button" value="Renew Item" [% UNLESS ( renew ) %] name="confirm"[% END %] class="renew" onclick="this.form.confirmed.value='1';this.form.submit();" /> TTParser read as: tagname=input attributes = { In template, the two only occurrences I found in this scheme are in 'modules/sco/sco-main.tt'... -- 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. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
