dont flush rewrite rules while in switch_to_blog, see #12383

git-svn-id: https://develop.svn.wordpress.org/trunk@13509 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ron Rennick 2010-02-28 19:34:57 +00:00
parent 5c706700f3
commit 7b043de017
1 changed files with 2 additions and 1 deletions

View File

@ -218,7 +218,8 @@ switch ( $_GET['action'] ) {
update_option( 'home', $blog_address ); update_option( 'home', $blog_address );
} }
$wp_rewrite->flush_rules(); // rewrite rules can't be flushed during switch to blog
update_option( 'rewrite_rules', '' );
// update blogs table // update blogs table
$blog_data = stripslashes_deep($_POST[ 'blog' ]); $blog_data = stripslashes_deep($_POST[ 'blog' ]);