https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18110 --- Comment #6 from Marc Véron <veron@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.