X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fremoveme.php;h=639c9be9f457bafcf704ecaa0e23252e5a377bad;hb=638e6491cc305b0455ae890351183e03e0bce52b;hp=904606fd57cb77b69a1a0b7ef48a9025ff012f25;hpb=3c97a6703cd5a743fc9339f52996bcb1eb436ef0;p=friendica.git diff --git a/mod/removeme.php b/mod/removeme.php index 904606fd57..639c9be9f4 100644 --- a/mod/removeme.php +++ b/mod/removeme.php @@ -1,25 +1,32 @@ 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,21 +34,22 @@ function removeme_post(&$a) { } -function removeme_content(&$a) { +function removeme_content(App $a) { - if(! local_user()) + if (! local_user()) { goaway(z_root()); + } $hash = random_string(); - require_once("mod/settings.php"); - settings_init($a); + 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.'),