From 4786a0a84e52cbfe18b77d8aefcb7928a7a02bda Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Mon, 18 Jun 2018 15:48:12 +0000 Subject: [PATCH] Bug 20934: (QA follow-up) Fix showing number of records in checkout history Test plan: 0) Do not apply this patch 1) Go to biblio checkout history page (issuehistory.pl) 2) You'll see something like "Checked out ARRAY(0xf830378) times" 3) Apply this patch 4) Now you should see number of checkout history records Signed-off-by: Josef Moravec --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt index e831fa6..785857a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt @@ -27,7 +27,7 @@
[% IF checkouts %] -

Checked out [% checkouts %] times

+

Checked out [% checkouts.size %] times

[% IF Koha.Preference('intranetreadinghistory') AND CAN_user_circulate_circulate_remaining_permissions %] -- 2.1.4