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