From f36253b7a8f3cc628b985df1ab257ff03189727c Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Fri, 15 Aug 2014 14:56:17 +0200 Subject: Account deletion fix multi user deletion, add confirmation message --- include/Contact.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/Contact.php b/include/Contact.php index 47b1763cb..140f449af 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -185,6 +185,7 @@ function account_remove($account_id,$local = true,$unset_session=true) { $r = q("select * from account where account_id = %d limit 1", intval($account_id) ); + $account_email=$r[0]['account_email']; if(! $r) { logger('account_remove: No account with id: ' . $account_id); @@ -207,6 +208,7 @@ function account_remove($account_id,$local = true,$unset_session=true) { if ($unset_session) { unset($_SESSION['authenticated']); unset($_SESSION['uid']); + notice( sprintf(t("User '%s' deleted"),$account_email) . EOL); goaway(get_app()->get_baseurl()); } return $r; -- cgit v1.2.3