From 92bf7a3b2694dcadcb4e5559d292760f6e4943dd Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 12 Dec 2023 06:55:04 -0500 Subject: [PATCH] Bug 18139: Specify 'all item types' and 'all patron categories' in template Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index 94dcaf6dbc1..9f2631cc4d6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -1075,7 +1075,7 @@ [% IF rule.itemtype %] [% ItemTypes.GetDescription( rule.itemtype ) | html %] [% ELSE %] - All + All item types [% END %]
  • @@ -1083,7 +1083,7 @@ [% IF rule.categorycode %] [% Categories.GetName( rule.categorycode ) | html %] [% ELSE %] - All + All patron categories [% END %]
  • -- 2.43.0