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