@@ -, +, @@ xx is branchcode --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt @@ -162,13 +162,13 @@ tinyMCE.init({
    [% FOREACH category IN categories %]
  1. - + [% IF category and selected_categorycodes.grep(category.categorycode).size %] [% ELSE %] [% END %] - [% category.codedescription %] + [% category.codedescription |html %]
  2. [% END %]
@@ -204,7 +204,7 @@ tinyMCE.init({ [% IF op == 'delete_confirm' and not ( items_count or patrons_count )%]
-

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

+

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

@@ -264,7 +264,7 @@ tinyMCE.init({ [% FOREACH category IN library.get_categories %] - [% category.categoryname %]
+ [% category.categoryname |html %]
[% END %] [% library.branchip %] @@ -296,9 +296,9 @@ tinyMCE.init({ [% FOREACH category IN group_type.categories %] - [% category.categoryname %] + [% category.categoryname |html %] [% category.categorycode %] - [% category.codedescription %] + [% category.codedescription |html %] Edit Delete @@ -382,7 +382,7 @@ tinyMCE.init({ [% IF op == 'delete_confirm_category' %]
-

Are you sure you want to delete the group '[% category.codedescription %]' ([% category.categorycode %])?

+

Are you sure you want to delete the group '[% category.codedescription |html %]' ([% category.categorycode %])?

--