summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-12-04 04:28:17 +0100
committerterry%mozilla.org <>1999-12-04 04:28:17 +0100
commit95d743ca823afccd8e6a106926cd7b9798b5ca2b (patch)
tree6c71eebaf983987f1c1a98f822c033e1db2b45a1 /globals.pl
parent69b0cad73f81af9cb0ba125fae6bdcddc6a294aa (diff)
downloadbugzilla-95d743ca823afccd8e6a106926cd7b9798b5ca2b.tar.gz
bugzilla-95d743ca823afccd8e6a106926cd7b9798b5ca2b.tar.xz
Fixed bug 20126 -- use more international-friendly (and Y2K happier) date formats.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index 8641534f9..e6f426af8 100644
--- a/globals.pl
+++ b/globals.pl
@@ -110,7 +110,7 @@ sub AppendComment {
SendSQL("select long_desc from bugs where bug_id = $bugid");
my $desc = FetchOneColumn();
- my $now = time2str("%D %H:%M", time());
+ my $now = time2str("%Y-%m-%d %H:%M", time());
$desc .= "\n\n------- Additional Comments From $who $now -------\n";
$desc .= $comment;
SendSQL("update bugs set long_desc=" . SqlQuote($desc) .