The remove page now has the settings menu.

This commit is contained in:
Michael Vogel 2014-04-29 22:34:48 +02:00
부모 7b7e372fb0
커밋 a6b03b6263
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -27,8 +27,6 @@ function removeme_post(&$a) {
}
function removeme_content(&$a) {
if(! local_user())
@ -36,6 +34,9 @@ function removeme_content(&$a) {
$hash = random_string();
require_once("mod/settings.php");
settings_init($a);
$_SESSION['remove_account_verify'] = $hash;
$tpl = get_markup_template('removeme.tpl');
@ -48,6 +49,6 @@ function removeme_content(&$a) {
'$submit' => t('Remove My Account')
));
return $o;
return $o;
}
}