summaryrefslogtreecommitdiffstats
path: root/web/html/account.php
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-11-10 19:49:13 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2016-02-07 10:52:05 +0100
commitaa5e58db81b8a243e03d0f08925c2d1f34c82304 (patch)
tree22b086afdf5dc6173f5964342be0f09f3d266571 /web/html/account.php
parent3412de21d32708b44d1fb3011649734e3cc67d9b (diff)
downloadaur-aa5e58db81b8a243e03d0f08925c2d1f34c82304.tar.gz
aur-aa5e58db81b8a243e03d0f08925c2d1f34c82304.tar.xz
Add global comment notification setting
Add a configuration option to the account edit page that allows for globally enabling/disabling package base comment notifications. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html/account.php')
-rw-r--r--web/html/account.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/web/html/account.php b/web/html/account.php
index b2886fc6..2f85a8a9 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -35,7 +35,8 @@ if ($action == "UpdateAccount") {
in_request("E"), in_request("H"), in_request("P"),
in_request("C"), in_request("R"), in_request("L"),
in_request("I"), in_request("K"), in_request("PK"),
- in_request("J"), in_request("ID"), $row["Username"]);
+ in_request("J"), in_request("CN"), in_request("ID"),
+ $row["Username"]);
}
}
@@ -81,7 +82,8 @@ if (isset($_COOKIE["AURSID"])) {
$row["AccountTypeID"], $row["Suspended"], $row["Email"],
$row["HideEmail"], "", "", $row["RealName"],
$row["LangPreference"], $row["IRCNick"], $row["PGPKey"], $PK,
- $row["InactivityTS"] ? 1 : 0, $row["ID"], $row["Username"]);
+ $row["InactivityTS"] ? 1 : 0, $row["CommentNotify"],
+ $row["ID"], $row["Username"]);
} else {
print __("You do not have permission to edit this account.");
}
@@ -114,10 +116,14 @@ if (isset($_COOKIE["AURSID"])) {
print $update_account_message;
if (!$success) {
- display_account_form("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("I"),
- in_request("K"), in_request("PK"), in_request("J"), in_request("ID"),
+ display_account_form("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("I"), in_request("K"),
+ in_request("PK"), in_request("J"),
+ in_request("CN"), in_request("ID"),
$row["Username"]);
}