Index: web/html/account.php =================================================================== --- web/html/account.php (revision 151) +++ web/html/account.php (working copy) @@ -59,7 +59,24 @@ } } - } elseif ($_REQUEST["Action"] == "UpdateAccount") { + } elseif ($_REQUEST["Action"] == "AccountInfo") { + # no editing, just looking up user info + # + $q = "SELECT Users.*, AccountTypes.AccountType "; + $q.= "FROM Users, AccountTypes "; + $q.= "WHERE AccountTypes.ID = Users.AccountTypeID "; + $q.= "AND Users.ID = ".intval($_REQUEST["ID"]); + $result = db_query($q, $dbh); + if (!result) { + print __("Could not retrieve information for the specified user."); + } else { + $row = mysql_fetch_assoc($result); + display_account_info($row["Username"], + $row["AccountType"], $row["Email"], $row["RealName"], + $row["IRCNick"]); + } + + } elseif ($_REQUEST["Action"] == "UpdateAccount") { # user is submitting their modifications to an existing account # process_account_form($atype, "edit", "UpdateAccount", Index: web/lib/acctfuncs.inc =================================================================== --- web/lib/acctfuncs.inc (revision 151) +++ web/lib/acctfuncs.inc (working copy) @@ -586,5 +586,58 @@ return; } +# Display non-editable account info +# +function display_account_info($U="",$T="", + $E="",$R="",$I="") { + # U: value to display for username + # T: value to display for account type + # E: value to display for email address + # R: value to display for RealName + # I: value to display for IRC nick + + global $SUPPORTED_LANGS; + + print "
| ".__("Username").": | "; + print "".$U." | "; + print "
| ".__("Account Type").": | "; + print ""; + if ($T == "User") { + print __("User"); + } elseif ($T == "Trusted User") { + print __("Trusted User"); + } elseif ($T == "Developer") { + print __("Developer"); + } + print " | \n"; + + print "
| ".__("Email Address").": | "; + print "".$E." | "; + print "
| ".__("Real Name").": | "; + print "".$R." | "; + print "
| ".__("IRC Nick").": | "; + print "".$I." | "; + print "