From 88a8d88b27d8a19cebfd3e9fa7545c54f12f7d5e 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] [SIGNED OFF] 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 --- 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