From 8fc3a80ac0de1b42ddbb561d3398949824d6757e 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 Signed-off-by: Brendan Gallagher --- 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 6dced76..cea3474 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.7.10.4