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

--- Comment #10 from Marc VĂ©ron <[email protected]> ---
Yes, I applied the patch.

I think it is in member-display-address-style-fr.inc:

The patch is as follows:
(...)
    [% IF ( address ) %]
        [% SET roadtype_desc = '' %]
        [% IF streettype %]
            [% SET roadtype_desc = AuthorisedValues.GetByCode('ROADTYPE',
streettype) %]
        [% END %]
        [% IF streetnumber %] [% streetnumber %][% END %]
        [%IF roadtype_desc %] [% roadtype_desc %][% END %]
        <li class="patronaddress1">[% address %]
       </li>
    [% END %]
(...)

If I change it to the following, the address displays OK:

(...)

    [% IF ( address ) %]
        [% SET roadtype_desc = '' %]
        [% IF streettype %]
            [% SET roadtype_desc = AuthorisedValues.GetByCode('ROADTYPE',
streettype) %]
        [% END %]

        <li class="patronaddress1">
            [% IF streetnumber %] [% streetnumber %][% END %]
            [%IF roadtype_desc %] [% roadtype_desc %][% END %]
            [% address %]
       </li>
    [% END %]


(...)

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
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/

Reply via email to