[Koha-bugs] [Bug 18110] Adds FR to the syspref AddressFormat

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Feb 27 17:16:49 CET 2017


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

--- Comment #16 from Marc Véron <veron at veron.ch> ---
I'm really sorry, but there is still a problem with 
koha-tmpl/intranet-tmpl/prog/en/includes/member-display-address-style-fr.inc

The streetnumber still does not display on the same line as the address.

Your code reads (line 7 and following):

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

It should be:

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

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list