summaryrefslogtreecommitdiffstats
path: root/web/html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-10-21 23:03:42 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2011-10-24 17:57:53 +0200
commitc7a9c2f3d3e396f3cedbf8b65a987d4c3ee7889f (patch)
tree548ece59a1f88f8726bd0d46991047733e448974 /web/html
parenta21739aae5daece7098652a0f7f8b7fd36b8fcc6 (diff)
downloadaur-c7a9c2f3d3e396f3cedbf8b65a987d4c3ee7889f.tar.gz
aur-c7a9c2f3d3e396f3cedbf8b65a987d4c3ee7889f.tar.xz
Show last voted date on account details page
We already show it in the account listing page as well, so we should show it here too. Also use a standard date format; we weren't using this non-punctuated format anywhere else. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/account.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/account.php b/web/html/account.php
index ca05d1ac..d42c61b6 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -82,7 +82,7 @@ if (isset($_COOKIE["AURSID"])) {
$row = mysql_fetch_assoc($result);
display_account_info($row["Username"],
$row["AccountType"], $row["Email"], $row["RealName"],
- $row["IRCNick"]);
+ $row["IRCNick"], $row["LastVoted"]);
}
} elseif ($action == "UpdateAccount") {