summaryrefslogtreecommitdiff
path: root/perl-lib/PgCommitFest/CommitFest.pm
diff options
context:
space:
mode:
authorRobert Haas2009-05-26 11:06:30 +0000
committerRobert Haas2009-05-26 11:06:30 +0000
commite250b34c5572b3162929c6a6a59c78cbf936ebcd (patch)
treef820ba2ef8e992f6b3c71c6fb86c962d814dc15d /perl-lib/PgCommitFest/CommitFest.pm
parent1e5057be510f91d06c7f9d8c126f94f085bc0694 (diff)
Standardize on YYYY-MM-DD date format.
Diffstat (limited to 'perl-lib/PgCommitFest/CommitFest.pm')
-rw-r--r--perl-lib/PgCommitFest/CommitFest.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-lib/PgCommitFest/CommitFest.pm b/perl-lib/PgCommitFest/CommitFest.pm
index e6cadd9..f16819d 100644
--- a/perl-lib/PgCommitFest/CommitFest.pm
+++ b/perl-lib/PgCommitFest/CommitFest.pm
@@ -114,7 +114,7 @@ EOM
# Load list of comments.
my $comment_list = $r->db->select(<<EOM, $d->{'id'});
SELECT v.id, v.patch_id, v.patch_comment_type, v.message_id, v.content,
- v.creator, to_char(v.creation_time, 'MM/DD/YYYY') AS creation_time
+ v.creator, to_char(v.creation_time, 'YYYY-MM-DD') AS creation_time
FROM most_recent_comments(?) v
EOM
for my $c (@$comment_list) {