https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25322 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Patch doesn't apply --- Comment #30 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- 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.