From 73e5032c4bf52ee72972a6fe8182d3fd5737716c Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 20 May 2020 17:59:16 +0000 Subject: [PATCH] Bug 25555: Invert patron name in holdsqueue.tt TEST PLAN: 1. Have multiple holds from multiple patrons and run the holds queue cron to populate the holds queue list. 2. Try sorting by patron and see that is sorts based on first name. 3. Apply patch 4. Try sorting again and now it should sort by surname. Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- 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 63bc6263de..8c8c1551ce 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 @@ -162,7 +162,7 @@

- [% INCLUDE 'patron-title.inc' patron=itemsloo.patron hide_patron_infos_if_needed=1 link_to="circulation_reserves" %] + [% INCLUDE 'patron-title.inc' invert_name=1 patron=itemsloo.patron hide_patron_infos_if_needed=1 link_to="circulation_reserves" %]

[% UNLESS Koha.Preference('HidePatronName') %]

[% itemsloo.patron.phone | html %]

-- 2.39.2