summaryrefslogtreecommitdiffstats
path: root/web/html
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-12-13 15:47:08 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2014-12-13 15:47:08 +0100
commit3b9c12715c4b327d0299350d908a8d69a3654a37 (patch)
tree9c5b654c9d0fa7732ae0686816cab29714287f35 /web/html
parent5ebf534ba7e90ccb12007c137ecea1cfcc4876da (diff)
downloadaurweb-3b9c12715c4b327d0299350d908a8d69a3654a37.tar.xz
Show user name in title on the account details page
Suggested-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/account.php32
1 files changed, 19 insertions, 13 deletions
diff --git a/web/html/account.php b/web/html/account.php
index f5ca304..c1a1cd7 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -8,15 +8,27 @@ include_once('acctfuncs.inc.php'); # access Account specific functions
set_lang(); # this sets up the visitor's language
check_sid(); # see if they're still logged in
-html_header(__('Accounts'));
+$action = in_request("Action");
+
+$need_userinfo = array(
+ "DisplayAccount", "DeleteAccount", "AccountInfo", "UpdateAccount"
+);
+
+if (in_array($action, $need_userinfo)) {
+ $row = account_details(in_request("ID"), in_request("U"));
+}
+
+if ($action == "AccountInfo") {
+ html_header(__('Account') . ' ' . $row['Username']);
+} else {
+ html_header(__('Accounts'));
+}
# Main page processing here
#
echo "<div class=\"box\">\n";
echo " <h2>".__("Accounts")."</h2>\n";
-$action = in_request("Action");
-
if (isset($_COOKIE["AURSID"])) {
if ($action == "SearchAccounts") {
@@ -39,7 +51,6 @@ if (isset($_COOKIE["AURSID"])) {
} elseif ($action == "DisplayAccount") {
# the user has clicked 'edit', display the account details in a form
#
- $row = account_details(in_request("ID"), in_request("U"));
if (empty($row)) {
print __("Could not retrieve information for the specified user.");
} else {
@@ -57,15 +68,13 @@ if (isset($_COOKIE["AURSID"])) {
} elseif ($action == "DeleteAccount") {
/* Details for account being deleted. */
- $acctinfo = account_details(in_request('ID'), in_request('U'));
-
- if (can_edit_account($acctinfo)) {
- $UID = $acctinfo['ID'];
+ if (can_edit_account($row)) {
+ $UID = $row['ID'];
if (in_request('confirm_Delete') && check_token()) {
user_delete($UID);
header('Location: /');
} else {
- $username = $acctinfo['Username'];
+ $username = $row['Username'];
include("account_delete.php");
}
} else {
@@ -74,7 +83,6 @@ if (isset($_COOKIE["AURSID"])) {
} elseif ($action == "AccountInfo") {
# no editing, just looking up user info
#
- $row = account_details(in_request("ID"), in_request("U"));
if (empty($row)) {
print __("Could not retrieve information for the specified user.");
} else {
@@ -83,10 +91,8 @@ if (isset($_COOKIE["AURSID"])) {
} elseif ($action == "UpdateAccount") {
/* Details for account being updated */
- $acctinfo = account_details(in_request('ID'), in_request('U'));
-
/* Verify user permissions and that the request is a valid POST */
- if (can_edit_account($acctinfo) && check_token()) {
+ if (can_edit_account($row) && check_token()) {
/* Update the details for the existing account */
process_account_form("edit", "UpdateAccount",
in_request("U"), in_request("T"), in_request("S"),