X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6be015fafb81c9553f44b8e06ec3812ba6befe9e..b68c23bf6e98cf678081dcaa84a8593b10aaff29:/SL/Locale.pm diff --git a/SL/Locale.pm b/SL/Locale.pm index d6ac18157..87008734a 100644 --- a/SL/Locale.pm +++ b/SL/Locale.pm @@ -358,11 +358,7 @@ sub reformat_date { sprintf("%0" . (length($&)) . "d", $mm); $output_format =~ /y+/; - if (length($&) == 2) { - $yy -= $yy >= 2000 ? 2000 : 1900; - } - substr($output_format, $-[0], $+[0] - $-[0]) = - sprintf("%0" . (length($&)) . "d", $yy); + substr($output_format, $-[0], $+[0] - $-[0]) = $yy; $main::lxdebug->leave_sub();