X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fremoveme.php;h=40033624d8889ac330a8be2c7f725febef8e2cfc;hb=325d3afe183a397ea6688480c1b2df8e1be99dc1;hp=ee88bd76a55212d89521eea7b12e782266b76b2e;hpb=8a80ea24d1d8039be6dc532c9db23c60e71eb467;p=friendica.git diff --git a/mod/removeme.php b/mod/removeme.php index ee88bd76a5..40033624d8 100644 --- a/mod/removeme.php +++ b/mod/removeme.php @@ -1,25 +1,30 @@ user['password'])) && ($encrypted === $a->user['password'])) { + if ((strlen($a->user['password'])) && ($encrypted === $a->user['password'])) { require_once('include/Contact.php'); user_remove($a->user['uid']); // NOTREACHED @@ -27,20 +32,22 @@ function removeme_post(&$a) { } +function removeme_content(App $a) { - -function removeme_content(&$a) { - - if(! local_user()) + if (! local_user()) { goaway(z_root()); + } $hash = random_string(); + require_once("mod/settings.php"); + settings_init($a); + $_SESSION['remove_account_verify'] = $hash; $tpl = get_markup_template('removeme.tpl'); $o .= replace_macros($tpl, array( - '$basedir' => $a->get_baseurl(), + '$basedir' => App::get_baseurl(), '$hash' => $hash, '$title' => t('Remove My Account'), '$desc' => t('This will completely remove your account. Once this has been done it is not recoverable.'), @@ -48,6 +55,6 @@ function removeme_content(&$a) { '$submit' => t('Remove My Account') )); - return $o; + return $o; -} \ No newline at end of file +}