From 137f5701a13a5f4415a3ce99e50151787b9b6a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Sun, 6 Aug 2017 00:48:41 +0200 Subject: Use the DD.MM.YY format for dates in Old and New Charts --- Bugzilla/Chart.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 3c69006aa..2189084fa 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; } -- cgit v1.2.1