From a0cfb192c8b8ba9aa2a698386bf9fed577998f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Wed, 4 Nov 2015 16:05:59 +0100 Subject: [PATCH] Bug 14954: (followup) Display exceptions in syspref format This patch fixes the display of exceptions (was iso, is now syspref). See comment #14 and attachment #15 Signed-off-by: Nick Clemens Signed-off-by: Mirko Tietgen Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com --- tools/holidays.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/holidays.pl b/tools/holidays.pl index f1739bd..1aea801 100755 --- a/tools/holidays.pl +++ b/tools/holidays.pl @@ -122,7 +122,7 @@ foreach my $yearMonthDay (keys %$exception_holidays) { my %exception_holiday; %exception_holiday = (KEY => $yearMonthDay, DATE_SORT => $exception_holidays->{$yearMonthDay}{date}, - DATE => output_pref( { dt => $exceptiondate, dateonly => 1, dateformat => 'iso' } ), + DATE => output_pref( { dt => $exceptiondate, dateonly => 1 } ), TITLE => $exception_holidays->{$yearMonthDay}{title}, DESCRIPTION => $exception_holidays->{$yearMonthDay}{description}); push @exception_holidays, \%exception_holiday; -- 2.1.4