From 4fa1f78c38c75478e35eeedce539e601510dcecf Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 6 Dec 2011 15:09:27 -0500 Subject: [PATCH] Bug 3806 - Holidays table doesn't order by date correcly Adding dateformat filter to JavaScript tablesorter configurations. Signed-off-by: Duncan Tyler --- .../prog/en/modules/tools/holidays.tt | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt index ac867fe..fe2cdff 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt @@ -88,16 +88,20 @@ $("#branch").change(function(){ changeBranch(); }); - $("#holidayexceptions").tablesorter({ + $("#holidayexceptions").tablesorter({[% IF ( dateformat_metric ) %] + dateFormat: 'uk',[% END %] sortList: [[0,0]], widgets: ['zebra'] }); - $("#holidayweeklyrepeatable").tablesorter({ + $("#holidayweeklyrepeatable").tablesorter({[% IF ( dateformat_metric ) %] + dateFormat: 'uk',[% END %] sortList: [[0,0]], widgets: ['zebra'] }); - $("#holidaysyearlyrepeatable").tablesorter({ + $("#holidaysyearlyrepeatable").tablesorter({[% IF ( dateformat_metric ) %] + dateFormat: 'uk',[% END %] sortList: [[0,0]], widgets: ['zebra'] }); - $("#holidaysunique").tablesorter({ + $("#holidaysunique").tablesorter({[% IF ( dateformat_metric ) %] + dateFormat: 'uk',[% END %] sortList: [[0,0]], widgets: ['zebra'] }); $("a.helptext").click(function(){ -- 1.7.5.4