diff options
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/account.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/web/html/account.php b/web/html/account.php index 2a96845..ce3f777 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -68,9 +68,7 @@ if (isset($_COOKIE["AURSID"])) { if (empty($row)) { print __("Could not retrieve information for the specified user."); } else { - display_account_info($row["Username"], - $row["AccountType"], $row["Email"], $row["RealName"], - $row["IRCNick"], $row["PGPKey"], $row["LastVoted"]); + include("account_details.php"); } } elseif ($action == "UpdateAccount") { |