From 6bd20f93f28f9beab247ce12c39d4b0cb5d97922 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 29 Nov 2017 15:24:40 -0300 Subject: [PATCH] Bug 19560: Correctly escape branchcode in admin/branches.pl Signed-off-by: Owen Leonard --- .../intranet-tmpl/prog/en/modules/admin/branches.tt | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt index 945fe2e..e0418bf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt @@ -5,9 +5,9 @@ [% ELSIF op == 'delete_confirm_category' %] › Confirm deletion of group [% category.categorycode %] [% ELSIF op == 'add_form' %] - ›[% IF library %]Modify library[% ELSE %]New library [% library.branchcode %][% END %] + ›[% IF library %]Modify library[% ELSE %]New library [% library.branchcode | html %][% END %] [% ELSIF op == 'delete_confirm' %] - › Confirm deletion of library '[% library.branchcode %]' + › Confirm deletion of library '[% library.branchcode | html %]' [% END %] [% INCLUDE 'doc-head-close.inc' %] @@ -67,9 +67,9 @@ tinyMCE.init({ [% ELSIF op == 'delete_confirm_category' %] › Confirm deletion of group [% category.categorycode %] [% ELSIF op == 'add_form' %] -› [% IF library %]Modify library[% ELSE %]New library [% library.branchcode %][% END %] +› [% IF library %]Modify library[% ELSE %]New library [% library.branchcode | html %][% END %] [% ELSIF op == 'delete_confirm' %] -› Confirm deletion of library '[% library.branchcode %]' +› Confirm deletion of library '[% library.branchcode | html %]' [% END %] @@ -143,7 +143,7 @@ tinyMCE.init({ [% IF library %] Library code: - [% library.branchcode %] + [% library.branchcode | html %] [% ELSE %] @@ -205,7 +205,7 @@ tinyMCE.init({ [% IF op == 'delete_confirm' and not ( items_count or patrons_count )%]
-

Are you sure you want to delete [% library.branchname |html %] ([% library.branchcode %])?

+

Are you sure you want to delete [% library.branchname |html %] ([% library.branchcode | html %])?

@@ -272,8 +272,12 @@ tinyMCE.init({ [% library.marcorgcode %] [% library.branchip %] - Edit - Delete + Edit + + + + +
[% END %] -- 2.1.4