diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-03-07 15:56:28 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-03-07 15:56:28 +0100 |
commit | 9cd7546be5ad7f24534653f310c15362c3f2baa6 (patch) | |
tree | c46302b51a797dfd718e08c1928b3b3825ecd6fb /mod/removeaccount.php | |
parent | 53e908d7b7ea1b1ff9aa5ca6154dc4c9e7ca0d13 (diff) | |
download | volse-hubzilla-9cd7546be5ad7f24534653f310c15362c3f2baa6.tar.gz volse-hubzilla-9cd7546be5ad7f24534653f310c15362c3f2baa6.tar.bz2 volse-hubzilla-9cd7546be5ad7f24534653f310c15362c3f2baa6.zip |
hopefully fix #919
Diffstat (limited to 'mod/removeaccount.php')
-rw-r--r-- | mod/removeaccount.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mod/removeaccount.php b/mod/removeaccount.php index 4505bbea0..70979ec15 100644 --- a/mod/removeaccount.php +++ b/mod/removeaccount.php @@ -9,7 +9,6 @@ function removeaccount_post(&$a) { return; if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) - notice( t('Password not correct.') . EOL); return; if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) @@ -23,7 +22,6 @@ function removeaccount_post(&$a) { $account_id = get_account_id(); if(! account_verify_password($account['account_email'],$_POST['qxz_password'])) - notice( t('Password not correct.') . EOL); return; if($account['account_password_changed'] != NULL_DATE) { |