summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2011-04-13 11:53:39 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2011-04-13 12:22:28 +0200
commiteef5353bde3afbd6b3180a98eddef9ea0b35b472 (patch)
treee893b6727126a6a1f4e09170525663e3a347831a
parent31cda618ca3c726c6f5f89a52a7da2b8c9663aef (diff)
downloadaur-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>
-rw-r--r--web/html/account.php8
-rw-r--r--web/lib/acctfuncs.inc33
2 files changed, 10 insertions, 31 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
diff --git a/web/lib/acctfuncs.inc b/web/lib/acctfuncs.inc
index c3a6c069..22d5c5f4 100644
--- a/web/lib/acctfuncs.inc
+++ b/web/lib/acctfuncs.inc
@@ -11,7 +11,7 @@ function in_request($name) {
# Display the standard Account form, pass in default values if any
function display_account_form($UTYPE,$A,$U="",$T="",$S="",
- $E="",$P="",$C="",$R="",$L="",$I="",$N="",$UID=0) {
+ $E="",$P="",$C="",$R="",$L="",$I="",$UID=0) {
# UTYPE: what user type the form is being displayed for
# A: what "form" name to use
# U: value to display for username
@@ -127,16 +127,6 @@ function display_account_form($UTYPE,$A,$U="",$T="",$S="",
print "</select></td>";
print "</tr>\n";
- print "<tr>";
- print "<td align='left'>".__("New Package Notify").":</td>";
- print "<td align='left'><input type='checkbox' name='N'";
- if ($N) {
- print " checked=\"checked\" />";
- } else {
- print " />";
- }
- print "</tr>\n";
-
print "<tr><td colspan='2'>&nbsp;</td></tr>\n";
print "<tr>";
print "<td>&nbsp;</td>";
@@ -162,7 +152,7 @@ function display_account_form($UTYPE,$A,$U="",$T="",$S="",
# process form input from a new/edit account form
#
function process_account_form($UTYPE,$TYPE,$A,$U="",$T="",$S="",$E="",
- $P="",$C="",$R="",$L="",$I="",$N="",$UID=0) {
+ $P="",$C="",$R="",$L="",$I="",$UID=0) {
# UTYPE: The user's account type
# TYPE: either "edit" or "new"
# A: what parent "form" name to use
@@ -269,7 +259,7 @@ function process_account_form($UTYPE,$TYPE,$A,$U="",$T="",$S="",$E="",
if ($error) {
print "<span class='error'>".$error."</span><br/>\n";
display_account_form($UTYPE, $A, $U, $T, $S, $E, "", "",
- $R, $L, $I, $N, $UID);
+ $R, $L, $I, $UID);
} else {
if ($TYPE == "new") {
# no errors, go ahead and create the unprivileged user
@@ -279,13 +269,8 @@ function process_account_form($UTYPE,$TYPE,$A,$U="",$T="",$S="",$E="",
array($U, $E, $P, $salt, $R, $L, $I));
$q = "INSERT INTO Users (" .
"AccountTypeID, Suspended, Username, Email, Passwd, Salt" .
- ", RealName, LangPreference, IRCNick, NewPkgNotify) " .
- "VALUES (1, 0, '" . implode("', '", $escaped) . "'";
- if ($N) {
- $q.= ", 1)";
- } else {
- $q.= ", 0)";
- }
+ ", RealName, LangPreference, IRCNick) " .
+ "VALUES (1, 0, '" . implode("', '", $escaped) . "')";
$result = db_query($q, $dbh);
if (!$result) {
print __("Error trying to create account, %h%s%h: %s.",
@@ -322,13 +307,7 @@ function process_account_form($UTYPE,$TYPE,$A,$U="",$T="",$S="",$E="",
$q.= ", RealName = '".mysql_real_escape_string($R)."'";
$q.= ", LangPreference = '".mysql_real_escape_string($L)."'";
$q.= ", IRCNick = '".mysql_real_escape_string($I)."'";
- $q.= ", NewPkgNotify = ";
- if ($N) {
- $q.= "1 ";
- } else {
- $q.= "0 ";
- }
- $q.= "WHERE ID = ".intval($UID);
+ $q.= " WHERE ID = ".intval($UID);
$result = db_query($q, $dbh);
if (!$result) {
print __("Error trying to modify account, %h%s%h: %s.",