From 82e13bda55d69ed4e6831a5f1a84d1d9273c8a5b 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 Signed-off-by: Josef Moravec --- .../prog/en/modules/admin/branches.tt | 24 +++++++++++++--------- 1 file changed, 14 insertions(+), 10 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..7964e69 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt @@ -1,13 +1,13 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Administration › Libraries and groups [% IF op == 'editcategory' %] - ›[% IF category.categorycode %]Edit group [% category.categorycode%][% ELSE %]New group[% END %] + › [% IF category.categorycode %] Edit group [% category.categorycode%] [% ELSE %] New group [% END %] [% 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 [% library.branchcode | html %] [% ELSE %] New library [% END %] [% ELSIF op == 'delete_confirm' %] - › Confirm deletion of library '[% library.branchcode %]' + › Confirm deletion of library '[% library.branchcode | html %]' [% END %] [% INCLUDE 'doc-head-close.inc' %] @@ -63,13 +63,13 @@ tinyMCE.init({ › AdministrationLibraries and groups [% IF op == 'add_form_category' %] -› [% IF category.categorycode %]Edit group [% category.categorycode %][% ELSE %]New group[% END %] +› [% IF category.categorycode %] Edit group [% category.categorycode %] [% ELSE %] New group [% END %] [% 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 [% library.branchcode | html %] [% ELSE %] New library [% 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