From ec65053805b086f020888b9caea1fc4ffe67160b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 9 Oct 2014 15:22:29 +0000 Subject: [PATCH] Bug 13069 - Enable sort by title to ignore articles on circulation and patron detail pages With the conversion of the circulation and patron detail checkout summary tables to AJAX recently we lost the ability to sort by title while ignoring articles. This patch corrects the problem by adding the "anti-the" configuration to the relevant column in the DataTables initializtion script. To test, apply the patch and clear your cache if necessary. Check out to a patron who has multiple checkouts, some of which have titles beginning with "a," "an," and "the." Sorting those checkouts by title should ignore articles. Test the patron detail page for that patron as well. Signed-off-by: Owen Leonard Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js index b2e47e4..2dc9703 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -204,7 +204,8 @@ $(document).ready(function() { + ""; return title; - } + }, + "sType": "anti-the" }, { "mDataProp": "itemtype" }, { "mDataProp": "issuedate_formatted" }, -- 2.1.0