aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@netscape.net>2017-08-06 00:48:41 +0200
committerFrédéric Buclin <LpSolit@netscape.net>2017-08-06 01:48:50 +0200
commit137f5701a13a5f4415a3ce99e50151787b9b6a74 (patch)
tree96aef23c542fb096424dc1e9120ba265684da348 /Bugzilla
parentbdcda45effd2fec32779200c4ee42e957c8ce0d9 (diff)
downloadbugs-137f5701a13a5f4415a3ce99e50151787b9b6a74.tar
bugs-137f5701a13a5f4415a3ce99e50151787b9b6a74.tar.gz
bugs-137f5701a13a5f4415a3ce99e50151787b9b6a74.tar.bz2
bugs-137f5701a13a5f4415a3ce99e50151787b9b6a74.tar.xz
bugs-137f5701a13a5f4415a3ce99e50151787b9b6a74.zip
Use the DD.MM.YY format for dates in Old and New Charts
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Chart.pm2
1 files changed, 1 insertions, 1 deletions
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;
}