mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
This commit is contained in:
parent
9c63946c03
commit
4a4f26cda6
4 changed files with 7 additions and 7 deletions
|
@ -8,7 +8,7 @@ while (list($indx, $carr) = each($comments)) { ?>
|
|||
$carr['UserName'] = "<a href=\"account.php?Action=AccountInfo&ID={$carr['UsersID']}\">{$carr['UserName']}</a>";
|
||||
}
|
||||
|
||||
$commentHeader = '<p style="display:inline;">' . __('Comment by: %s on %s', $carr['UserName'], gmdate('r', $carr['CommentTS'])) . '</p>';
|
||||
$commentHeader = '<p style="display:inline;">' . __('Comment by: %s on %s', $carr['UserName'], gmdate('Y-m-d H:i', $carr['CommentTS'])) . '</p>';
|
||||
|
||||
if (canDeleteCommentArray($carr, $atype, $uid)) {
|
||||
$durl = '<form method="post" action="packages.php?ID='.$row['ID'].'">';
|
||||
|
|
|
@ -21,9 +21,9 @@ $mod_int = intval($row["ModifiedTS"]);
|
|||
$sub_int = intval($row["SubmittedTS"]);
|
||||
|
||||
if ($mod_int == $sub_int):
|
||||
$modstring = '<img src="images/new.gif" alt="New!" /> ' . gmdate("r", $sub_int);
|
||||
$modstring = '<img src="images/new.gif" alt="New!" /> ' . gmdate("Y-m-d H:i", $sub_int);
|
||||
else:
|
||||
$modstring = gmdate("r", $mod_int);
|
||||
$modstring = gmdate("Y-m-d H:i", $mod_int);
|
||||
endif;
|
||||
?>
|
||||
|
||||
|
|
|
@ -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'])) ?>
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
?>
|
||||
<a href='tu.php?id=<?php print $row['ID'] ?>'><?php print $row["Agenda"] ?></a></span></span>
|
||||
</td>
|
||||
<td class='<?php print $c ?>'><span class='f5'><span class='blue'><?php print gmdate("j M y", $row["Submitted"]) ?></span></span></td>
|
||||
<td class='<?php print $c ?>'><span class='f5'><span class='blue'><?php print gmdate("j M y", $row["End"]) ?></span></span></td>
|
||||
<td class='<?php print $c ?>'><span class='f5'><span class='blue'><?php print gmdate("Y-m-d", $row["Submitted"]) ?></span></span></td>
|
||||
<td class='<?php print $c ?>'><span class='f5'><span class='blue'><?php print gmdate("Y-m-d", $row["End"]) ?></span></span></td>
|
||||
<td class='<?php print $c ?>'><span class='f6'><span class='blue'>
|
||||
<?php
|
||||
if (!empty($row['User'])) {
|
||||
|
|
Loading…
Add table
Reference in a new issue