diff options
Diffstat (limited to 'Bugzilla/Chart.pm')
-rw-r--r-- | Bugzilla/Chart.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index faf7a4785..2892ec32e 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -408,7 +408,7 @@ sub generateDateProgression { $dateto += (2 * $oneday) / 3; while ($datefrom < $dateto) { - push (@progression, time2str("%Y-%m-%d", $datefrom)); + push (@progression, time2str("%d.%m.%y", $datefrom)); $datefrom += $oneday; } |