Print footer instead of dying immediately. see #11644

git-svn-id: http://svn.automattic.com/wordpress/trunk@12780 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-20 22:11:02 +00:00
parent 6b0f3a88d5
commit f05930b979
1 changed files with 4 additions and 3 deletions

View File

@ -317,10 +317,11 @@ switch($action) {
default:
//@todo: give an informative screen instead
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;
}
?>