Print footer instead of dying immediately. see #11644

git-svn-id: https://develop.svn.wordpress.org/trunk@12780 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-01-20 22:11:02 +00:00
parent 5f298002bb
commit 467e54c2b3
1 changed files with 4 additions and 3 deletions

View File

@ -317,10 +317,11 @@ switch($action) {
default: default:
//@todo: give an informative screen instead //@todo: give an informative screen instead
if ( is_multisite() ) { if ( is_multisite() ) {
wp_die('Network already enabled'); _e('Network already enabled');
} else {
$rewrite_enabled = step1();
printstep1form($rewrite_enabled);
} }
$rewrite_enabled = step1();
printstep1form($rewrite_enabled);
break; break;
} }
?> ?>