From e2ee7c5a136f03a0d0a7bef5ed5e8c727c990593 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 22 Feb 2015 11:50:21 +0100 Subject: [PATCH] Bug 13750: Holds queue - Show branch name instead of branch code When the holds queue report is limited to one library, it shows items found for With the patch applied, the branch name is shown instead of the code. To test: - Go to circulation > Holds queue - Limit to one branch with holds waiting to be processed - Confirm the string has changed to show the branch name --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt index d6fe7e2..f855445 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -43,7 +43,7 @@ $(document).ready(function() { [% IF ( run_report ) %] [% IF ( total ) %]
[% total %] items found for - [% IF ( branchlimit ) %][% branchlimit %][% ELSE %]ALL libraries[% END %] + [% IF ( branchlimit ) %][% Branches.GetName( branchlimit ) %][% ELSE %]ALL libraries[% END %]
[% ELSE %]
No items found.
-- 1.9.1