diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-25 11:04:19 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-07-25 11:30:33 +0200 |
commit | 7df8dc8bcb0989a8543d699a7c667809170a69b3 (patch) | |
tree | 3ded7b5d19c0ebea74c943ce8e3bced195f072fb /web/html/account.php | |
parent | f4ee1278e5509c531675828dc8fce78ae1a608b9 (diff) | |
download | aur-7df8dc8bcb0989a8543d699a7c667809170a69b3.tar.gz aur-7df8dc8bcb0989a8543d699a7c667809170a69b3.tar.xz |
Add support for deleting user accounts
Users can now delete their own accounts by clicking a link in the
account edit form and confirming the deletion on a follow-up page.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/account.php')
-rw-r--r-- | web/html/account.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web/html/account.php b/web/html/account.php index f212eabb..d2899502 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -55,6 +55,22 @@ if (isset($_COOKIE["AURSID"])) { } } + } elseif ($action == "DeleteAccount") { + /* Details for account being deleted. */ + $acctinfo = account_details(in_request('ID'), in_request('U')); + + if (can_edit_account($acctinfo)) { + $UID = $acctinfo['ID']; + if (in_request('confirm_Delete') && check_token()) { + user_delete($UID); + header('Location: /'); + } else { + $username = $acctinfo['Username']; + include("account_delete.php"); + } + } else { + print __("You do not have permission to edit this account."); + } } elseif ($action == "AccountInfo") { # no editing, just looking up user info # |