@@ -, +, @@ - Fill borrowernotes and opacnote with lines separated by lines endings, - save and check the content is displayed on a single line, - apply this patch, - check lines endings are displayed --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -523,15 +523,15 @@ [% IF ( patron.borrowernotes ) %]
  • - Circulation note: - [% patron.borrowernotes | $raw %] + Circulation note:
    + [% patron.borrowernotes | html | html_line_break %]
  • [% END %] [% IF ( patron.opacnote ) %]
  • - OPAC note: - [% patron.opacnote | html %] + OPAC note:
    + [% patron.opacnote | html | html_line_break %]
  • [% END %] --