diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-05-23 13:29:01 -0400 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-06 11:25:50 +0200 |
commit | 4a4f26cda6582fd8ca41e185a73429708966116e (patch) | |
tree | 241edffcaae1ccf10fb5ec651da28a49dde72117 /web/template/tu_details.php | |
parent | 9c63946c032c3f0882f75b51636124baf5659913 (diff) | |
download | aurweb-4a4f26cda6582fd8ca41e185a73429708966116e.tar.xz |
Use sane date format strings everywhere
We fixed this for the fields displayed on the package details page in
commit b5fffe9a02cd4fd3b7da66e403f02eea89c8fcad. This should fix the
remaining ones.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Signed-off-by: canyonknight <canyonknight@gmail.com>
Diffstat (limited to 'web/template/tu_details.php')
-rw-r--r-- | web/template/tu_details.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php index c48f603..52a8656 100644 --- a/web/template/tu_details.php +++ b/web/template/tu_details.php @@ -17,8 +17,8 @@ if ($isrunning == 1) { ?> N/A <?php } ?> </b><br /> -<?php print __("Submitted: %s by %s", "<b>" . gmdate("r", $row['Submitted']) . "</b>", "<b>" . username_from_id($row['SubmitterID']) . "</b>") ?><br /> -<?php print __('End') ?>: <b><?php print gmdate("r", $row['End']) ?></b></p> +<?php print __("Submitted: %s by %s", "<b>" . gmdate("Y-m-d H:i", $row['Submitted']) . "</b>", "<b>" . username_from_id($row['SubmitterID']) . "</b>") ?><br /> +<?php print __('End') ?>: <b><?php print gmdate("Y-m-d H:i", $row['End']) ?></b></p> <p> <?php print str_replace("\n", "<br />\n", htmlspecialchars($row['Agenda'])) ?> |