summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
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) .