https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25322
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #30 from Jonathan Druart <[email protected]> --- There is a conflict: CONFLICT (content): Merge conflict in koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt Also, this is invalid: <label for="guarantor_relationship"[% UNLESS empty_relationship_allowed %] class="required"[% END %]>Relationship: </label> It breaks our translation tool, you should not add TT tag inside an HTML tag. You should write instead: [% UNLESS empty_relationship_allowed %] <label for="guarantor_relationship" class="required">Relationship: </label> [% ELSE %] <label for="guarantor_relationship">Relationship: </label> [% END %] -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
