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

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Feb 17 16:24:36 CET 2017


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

--- Comment #6 from Marc Véron <veron at veron.ch> ---
On the patron's detail page, street number goes on a separate line, something
like
11
rue de Bâle

instead of
11 rue de Bâle

I think the code should go inside the li element in
member-display-address-style-fr.inc (maybe at other places as well?)

You have something like:

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

I think it should be something like:

<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