From 87d7ded49074d997322a45ad1e1fd3dbc6e1338b 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 (cherry picked from commit b6afcdbf48d9daacb24a3f0337a5cab5c7dbded7) Signed-off-by: Lucas Gass --- 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 6792aff7f3..c6a0f990e6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -866,7 +866,7 @@ [% END %]
  • - Restrictions ([% debarments.count || 0 | html %]) + Restrictions ([% debarments.size || 0 | html %])
  • [% SET enrollments = patron.get_club_enrollments %] -- 2.39.5