From 468c2bc4d81854e6932f08b7c16358b2b46791cd 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. Signed-off-by: Andrew Isherwood --- 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 3f9a0ea744..e68a0369db 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.11.0