From 7fce3314519d0e566ab2e254ebdec658bee3609b Mon Sep 17 00:00:00 2001 From: =?utf8?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 Signed-off-by: Tomas Cohen Arazi --- tools/holidays.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/holidays.pl b/tools/holidays.pl index f1739bd77f..1aea801b54 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.11.4.GIT