diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-04-13 11:53:39 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-04-13 12:22:28 +0200 |
commit | eef5353bde3afbd6b3180a98eddef9ea0b35b472 (patch) | |
tree | e893b6727126a6a1f4e09170525663e3a347831a /web/html/account.php | |
parent | 31cda618ca3c726c6f5f89a52a7da2b8c9663aef (diff) | |
download | aur-eef5353bde3afbd6b3180a98eddef9ea0b35b472.tar.gz aur-eef5353bde3afbd6b3180a98eddef9ea0b35b472.tar.xz |
Remove "New Package Notify" option from user account settings.
Do this in preparation for the upcoming notification script removal.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/account.php')
-rw-r--r-- | web/html/account.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/account.php b/web/html/account.php index 47b74173..afb0d7cc 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -64,7 +64,7 @@ if (isset($_COOKIE["AURSID"])) { display_account_form($atype, "UpdateAccount", $row["Username"], $row["AccountType"], $row["Suspended"], $row["Email"], "", "", $row["RealName"], $row["LangPreference"], - $row["IRCNick"], $row["NewPkgNotify"], $row["ID"]); + $row["IRCNick"], $row["ID"]); } } @@ -92,7 +92,7 @@ if (isset($_COOKIE["AURSID"])) { in_request("U"), in_request("T"), in_request("S"), in_request("E"), in_request("P"), in_request("C"), in_request("R"), in_request("L"), in_request("I"), - in_request("N"), in_request("ID")); + in_request("ID")); } else { @@ -127,7 +127,7 @@ if (isset($_COOKIE["AURSID"])) { display_account_form($atype, "UpdateAccount", $row["Username"], $row["AccountType"], $row["Suspended"], $row["Email"], "", "", $row["RealName"], $row["LangPreference"], - $row["IRCNick"], $row["NewPkgNotify"], $row["ID"]); + $row["IRCNick"], $row["ID"]); } } } @@ -143,7 +143,7 @@ if (isset($_COOKIE["AURSID"])) { process_account_form("","new", "NewAccount", in_request("U"), 1, 0, in_request("E"), in_request("P"), in_request("C"), in_request("R"), - in_request("L"), in_request("I"), in_request("N")); + in_request("L"), in_request("I")); } else { # display the account request form |