[Koha-bugs] [Bug 25322] Adding a guarantor with no relationship defaults to father

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Jun 17 13:51:50 CEST 2020


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25322

Jonathan Druart <jonathan.druart at bugs.koha-community.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Signoff               |Patch doesn't apply

--- Comment #30 from Jonathan Druart <jonathan.druart at 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.


More information about the Koha-bugs mailing list