From ed67b6c7e3b41830fb7d84a533c286ef4c2beee7 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 25 Oct 2018 13:30:34 +0000 Subject: [PATCH] Bug 21663: Incorrect filter prevents predefined notes from being added to patron acccounts This patch removes an "html" filter from the template include which allows one to add predefined nots to a patron's account. To test, apply the patch and open a patron record for viewing or checkout. Click the "Add message" button. The "predefined notes" dropdown should contain the authorised_values you have with the 'BOR_NOTES' category. --- koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc index 3f9a0ea..e68a036 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -109,7 +109,7 @@ - [% bor_notes = AuthorisedValues.Get( 'BOR_NOTES' ) | html %] + [% bor_notes = AuthorisedValues.Get( 'BOR_NOTES' ) %] [% IF bor_notes %]
-- 2.1.4