diff options
author | Martin Fischer <martin@push-f.com> | 2022-10-13 01:00:45 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-10-13 01:00:45 +0200 |
commit | b1a4b78a787702edfaed410cd46515af8d25af1b (patch) | |
tree | 034baed88b18c83f811a103ba46b80341a74faf3 /Vote.php | |
parent | 111a497a08fd76dc6fa32e947de63b7379fd2126 (diff) |
fix vote timestamps not using 24-hour format
Diffstat (limited to 'Vote.php')
-rw-r--r-- | Vote.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -289,7 +289,7 @@ class SpecialInsertVote extends UnlistedSpecialPage { } $content = ContentHandler::getContentText($content); - $date = date('Y-m-d h:i'); + $date = date('Y-m-d H:i'); $username = str_replace(' ', '_', $this->getUser()->getName()); $comment = str_replace("\n", ' ', $comment); $newLine = "* $date $username: " . strtoupper($vote); |