@@ -, +, @@ - Go to the inventory tool - Search for a big sample list of items with different date last seen - Sort the table now by "date last seen" by clicking on the table header cell - Try different settings of the DateFormat system preferences - Verify sorting is incorrect (alphabetic, not by date) - Apply patch - Repeat testing and very all is sorting correctly now --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt @@ -200,7 +200,7 @@ Lost Damaged Withdrawn - Last seen + Last seen Problems @@ -239,7 +239,7 @@ [% result.withdrawn | html %] - [% result.datelastseen | $KohaDates %] + [% result.datelastseen | $KohaDates%] [% FOREACH problem IN result.problems %] @@ -350,6 +350,7 @@ "aoColumnDefs": [ { "sType": "anti-the", "aTargets" : [ "anti-the" ] }, { "bSortable": false, "bSearchable": false, "aTargets": [ 0 ] }, + { "sType": "title-string", "aTargets" : [ "title-string" ] }, ], // 3rd column is callnumber "aaSorting": [[ 2, "asc" ]], --