diff options
author | friendica <info@friendica.com> | 2014-08-15 06:05:22 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-15 06:05:22 -0700 |
commit | 257332f434740d974d6189d19c147722ad105a16 (patch) | |
tree | 1fbd6ab8b02a893e11a97427f74d2f1477c49068 /include | |
parent | 1978500e8ffb8ffdffd2d2969cbafb6f43b9dde4 (diff) | |
parent | d6da6f5001aa70681401a8b811d4e431a7831bd8 (diff) | |
download | volse-hubzilla-257332f434740d974d6189d19c147722ad105a16.tar.gz volse-hubzilla-257332f434740d974d6189d19c147722ad105a16.tar.bz2 volse-hubzilla-257332f434740d974d6189d19c147722ad105a16.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'include')
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 2 insertions, 0 deletions
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; |