From 9447acbeb7b1cd0bb4691aa1da8f533ca9099064 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Fri, 20 May 2022 12:41:12 +0200 Subject: [PATCH] login: Logo: keine (falschen) Oktalzahlen beim Datum --- bin/mozilla/login.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/mozilla/login.pl b/bin/mozilla/login.pl index 117c184cb..fe0008596 100644 --- a/bin/mozilla/login.pl +++ b/bin/mozilla/login.pl @@ -56,8 +56,8 @@ sub company_logo { my $git = SL::Git->new; ($form->{git_head}) = $git->get_log(since => 'HEAD~1', until => 'HEAD') if $git->is_git_installation; $form->{xmas} = '_xmas' if (DateTime->today->month == 12 && DateTime->today->day < 27); - $form->{xmas} = '_mir' if (DateTime->today->month >= 03 && DateTime->today->year == 2022 - && DateTime->today->month <= 09); + $form->{xmas} = '_mir' if (DateTime->today->month >= 3 && DateTime->today->year == 2022 + && DateTime->today->month <= 9); $form->{xmas} = '_mir' if (DateTime->today->day == 24 && DateTime->today->month == 2); # create the logo screen -- 2.20.1