@@ -, +, @@ - 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, 6 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -524,14 +524,18 @@ [% IF ( patron.borrowernotes ) %]
  • Circulation note: - [% patron.borrowernotes | $raw %] + [% FILTER html_line_break %] + [% patron.borrowernotes | $raw %] + [% END %]
  • [% END %] [% IF ( patron.opacnote ) %]
  • OPAC note: - [% patron.opacnote | html %] + [% FILTER html_line_break %] + [% patron.opacnote | html %] + [% END %]
  • [% END %] --