From 205e42eb7081f2a1f9708d9c1e22f203a8647601 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 --- 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.30.2