@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt | 2 +- .../intranet-tmpl/prog/en/modules/serials/subscription-detail.tt | 8 ++++---- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 4 ++-- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -633,7 +633,7 @@ [% IF MARCNOTE.marcnote.match('^https?://\S+$') %] [% MARCNOTE.marcnote | html %] [% ELSE %] - [% MARCNOTE.marcnote FILTER html_line_break | html %] + [% MARCNOTE.marcnote | html | html_line_break %] [% END %]

[% END %] @@ -659,7 +659,7 @@ [% END %] [% IF ( subscription.closed ) %]

This subscription is closed.

[% END %] [% IF ( subscription.callnumber ) %]

Callnumber: [% subscription.callnumber | html %]

[% END %] - [% IF ( subscription.subscriptionnotes ) %]

[% subscription.subscriptionnotes FILTER html_line_break | html %]

[% END %] + [% IF ( subscription.subscriptionnotes ) %]

[% subscription.subscriptionnotes | html | html_line_break %]

[% END %] [% IF ( subscription.missinglist ) %]

Missing issues: [% subscription.missinglist | html %]

[% END %] [% IF ( subscription.librariannote ) %]

([% subscription.librariannote | html %])

[% END %] [% IF ( subscription.latestserials ) %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt @@ -44,7 +44,7 @@ [% QUEUED_MESSAGE.subject | html %]
- +
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt @@ -336,10 +336,10 @@
  • History end date: [% histenddate | html %]
  • Received issues:[% recievedlist | html %]
  • Missing issues:[% missinglist | html %]
  • -
  • Nonpublic note:[% internalnotes FILTER html_line_break | html %]
  • -
  • Public note:[% notes FILTER html_line_break | html %]
  • -
  • History staff note:[% librariannote FILTER html_line_break | html %]
  • -
  • History OPAC note:[% opacnote FILTER html_line_break | html %]
  • +
  • Nonpublic note:[% internalnotes | html | html_line_break %]
  • +
  • Public note:[% notes | html | html_line_break %]
  • +
  • History staff note:[% librariannote | html | html_line_break %]
  • +
  • History OPAC note:[% opacnote | html | html_line_break %]
  • --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -811,7 +811,7 @@

    Call number: [% subscription.callnumber | html %]

    [% END %] [% IF ( subscription.subscriptionnotes ) %] -

    [% subscription.subscriptionnotes FILTER html_line_break | html %]

    +

    [% subscription.subscriptionnotes | html | html_line_break %]

    [% END %]

    Subscription from: [% subscription.histstartdate | $KohaDates %] to:[% IF ( subscription.histenddate ) %] [% subscription.histenddate | $KohaDates %] [% ELSE %] now (current)[% END %]

    [% IF ( subscription.letter ) %] @@ -829,7 +829,7 @@

    Missing issues: [% subscription.missinglist | html %]

    [% END %] [% IF ( subscription.opacnote ) %] -

    [% subscription.opacnote FILTER html_line_break | html %]

    +

    [% subscription.opacnote | html | html_line_break %]

    [% END %] [% IF ( subscription.latestserials ) %]

    The [% subscription.opacdisplaycount | html %] latest issues for this subscription:

    --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt @@ -115,7 +115,7 @@

    [% subscription_LOO.branchname | html %]

    [% IF ( subscription_LOO.notes ) %] -

    [% subscription_LOO.notes FILTER html_line_break | html %]

    +

    [% subscription_LOO.notes | html | html_line_break %]

    [% END %] [% IF ( subscription_LOO.recievedlist ) %] @@ -131,7 +131,7 @@ [% IF ( subscription_LOO.opacnote ) %]
    Issues summary

    - [% subscription_LOO.opacnote FILTER html_line_break | html %] + [% subscription_LOO.opacnote | html | html_line_break %]

    [% END %] [% IF ( subscription_LOO.letter ) %] --