From c01644a39c235216839481481c896c69b6e325cd Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 15 May 2025 18:13:38 +0000 Subject: [PATCH] Bug 40111: Fix title sorting on two reports This patch modifies two reports in order to correct sorting on title columns. To test, apply the patch and got to reports -> Lost items. - Run the report with parameters that will return multiple results. - Test sorting the title column. The articles 'a', 'an', and 'the' should be ignored. - Perform the same test with the "Orders by fund" report. Sponsored-by: Athens County Public Libraries --- koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt | 2 +- .../intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt index 88538ebea63..8f87e2161bf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt @@ -83,7 +83,7 @@ [% IF csv_profiles.count %] [% END %] - Title + Title Author Lost status Lost on diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt index 71ae52d44e2..4f3710ab617 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt @@ -58,7 +58,7 @@ Basket Basket name Basket by - Title + Title Currency List price RRP -- 2.39.5