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>
This commit is contained in:
Dan McGee 2011-10-21 16:03:42 -05:00 committed by Lukas Fleischer
parent a21739aae5
commit c7a9c2f3d3
2 changed files with 11 additions and 3 deletions

View file

@ -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") {