Bugzilla – Attachment 91906 Details for
Bug 23409
Show circulation note and OPAC note with line feeds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23409 - show borrowernotes and opacnote's lines feeds
Bug-23409---show-borrowernotes-and-opacnotes-lines.patch (text/plain), 2.14 KB, created by
Alex Arnaud
on 2019-08-01 13:31:05 UTC
(
hide
)
Description:
Bug 23409 - show borrowernotes and opacnote's lines feeds
Filename:
MIME Type:
Creator:
Alex Arnaud
Created:
2019-08-01 13:31:05 UTC
Size:
2.14 KB
patch
obsolete
>From 8d6fcf3ae2eee14a2b6539b40708c9403ebe13a4 Mon Sep 17 00:00:00 2001 >From: Alex Arnaud <alex.arnaud@biblibre.com> >Date: Thu, 1 Aug 2019 14:48:31 +0200 >Subject: [PATCH] Bug 23409 - show borrowernotes and opacnote's lines feeds > >Test plan: > - 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(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >index 05cb6c9..aa60528 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt >@@ -524,14 +524,18 @@ > [% IF ( patron.borrowernotes ) %] > <li id="patron-borrowernotes"> > <span class="label">Circulation note: </span> >- [% patron.borrowernotes | $raw %] >+ [% FILTER html_line_break %] >+ [% patron.borrowernotes | $raw %] >+ [% END %] > </li> > [% END %] > > [% IF ( patron.opacnote ) %] > <li id="patron-opacnote"> > <span class="label">OPAC note:</span> >- [% patron.opacnote | html %] >+ [% FILTER html_line_break %] >+ [% patron.opacnote | html %] >+ [% END %] > </li> > [% END %] > >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 23409
:
91905
|
91906
|
92172
|
92173
|
92246
|
92247
|
99712
|
99713
|
101386
|
101387