summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Weiman <mark.weiman@markzz.com>2017-01-20 07:16:41 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2017-01-20 23:20:51 +0100
commitfc2ecff949ced53849e0ae10923d02d74b895c32 (patch)
tree8d16164ab40b36c0608870d116a4bf90cd4c7a82
parent7ff50701903017b3b97ca3ca176e923769cdad43 (diff)
downloadaur-fc2ecff949ced53849e0ae10923d02d74b895c32.tar.gz
aur-fc2ecff949ced53849e0ae10923d02d74b895c32.tar.xz
account.php: Reformat process_account_form() call
Modify the call to process_account_form() to only having one parameter per line. Signed-off-by: Mark Weiman <mark.weiman@markzz.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--web/html/account.php24
1 files changed, 18 insertions, 6 deletions
diff --git a/web/html/account.php b/web/html/account.php
index 91e57038..0b757612 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -31,13 +31,25 @@ if ($action == "UpdateAccount") {
/* Update the details for the existing account */
list($success, $update_account_message) = process_account_form(
"edit", "UpdateAccount",
- in_request("U"), in_request("T"), in_request("S"),
- in_request("E"), in_request("H"), in_request("P"),
- in_request("C"), in_request("R"), in_request("L"),
+ in_request("U"),
+ in_request("T"),
+ in_request("S"),
+ in_request("E"),
+ in_request("H"),
+ in_request("P"),
+ in_request("C"),
+ in_request("R"),
+ in_request("L"),
in_request("TZ"),
- in_request("HP"), in_request("I"), in_request("K"),
- in_request("PK"), in_request("J"), in_request("CN"),
- in_request("UN"), in_request("ON"), in_request("ID"),
+ in_request("HP"),
+ in_request("I"),
+ in_request("K"),
+ in_request("PK"),
+ in_request("J"),
+ in_request("CN"),
+ in_request("UN"),
+ in_request("ON"),
+ in_request("ID"),
$row["Username"]);
}
}