summaryrefslogtreecommitdiffstats
path: root/web/html/account.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2013-08-04 14:19:32 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2013-08-22 17:43:13 +0200
commit6844f6c1d2965cd5ec2ad72c887baeed9517c246 (patch)
tree73f5a43e62c3fa5dec7d0a13c0f12aed41215847 /web/html/account.php
parent6ecfe12ce21f3c1a1a4f93cc35729a302348c058 (diff)
downloadaur-6844f6c1d2965cd5ec2ad72c887baeed9517c246.tar.gz
aur-6844f6c1d2965cd5ec2ad72c887baeed9517c246.tar.xz
Allow for setting an account's inactivity status
This adds a field to the users table and corresponding fields to the account edit and display forms that allow for setting an (in-)activity status. This might turn out to be useful if a user is on vacation and can not respond to update/orphan/deletion requests. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/account.php')
-rw-r--r--web/html/account.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/web/html/account.php b/web/html/account.php
index 4af30436..79b5eeb4 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -52,7 +52,8 @@ if (isset($_COOKIE["AURSID"])) {
display_account_form($atype, "UpdateAccount", $row["Username"],
$row["AccountTypeID"], $row["Suspended"], $row["Email"],
"", "", $row["RealName"], $row["LangPreference"],
- $row["IRCNick"], $row["PGPKey"], $row["ID"]);
+ $row["IRCNick"], $row["PGPKey"],
+ $row["InactivityTS"] ? 1 : 0, $row["ID"]);
} else {
print __("You do not have permission to edit this account.");
}
@@ -81,7 +82,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("K"), in_request("ID"));
+ in_request("K"), in_request("J"), in_request("ID"));
}
} else {
if ($atype == "Trusted User" || $atype == "Developer") {