From b6afcdbf48d9daacb24a3f0337a5cab5c7dbded7 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 4 Jul 2022 13:14:45 +0100 Subject: [PATCH] Bug 31129: Fix debarment count on circulation page This patch was split from bug 23681 where QA identified the issue. This patch fixes the debarment count displayed on the circulation page tabs Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9a3131d730..1a3be7a6d2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -869,7 +869,7 @@ [% END %]
  • - Restrictions ([% debarments.count || 0 | html %]) + Restrictions ([% debarments.size || 0 | html %])
  • [% SET enrollments = patron.get_club_enrollments %] -- 2.39.5