[wpmu-trac] [WordPress MU Trac] #575: Cache bug

WordPress MU Trac wpmu-trac at lists.automattic.com
Mon Mar 24 21:07:09 GMT 2008


#575: Cache bug
------------------------+---------------------------------------------------
 Reporter:  MrBrian     |       Owner:  somebody
     Type:  defect      |      Status:  new     
 Priority:  normal      |   Milestone:          
Component:  component1  |     Version:          
 Severity:  normal      |    Keywords:          
------------------------+---------------------------------------------------
 Latest rev 1213 does not seem to update the cache when changing themes.
 http://mu.wordpress.org/forums/topic.php?id=7876&page&replies=7#post-46579

 To reproduce, stick this code in 2 themes or more. Then switch between the
 themes a few times to see the inconsistency of the cached value vs
 database value.


 {{{
 global $blog_id, $wpdb;

         $key = $blog_id."-".'template'."-blog_option";
         $value = wp_cache_get( $key, "site-options" );
         echo 'Cached Key: '.$key.'<br/>';
         echo 'Cached Value: '.$value.'<br/>';

         $blogOptionsTable  = "wp_".$blog_id."_options";
         $blogtemplate = $wpdb->get_var("SELECT option_value FROM
 $blogOptionsTable WHERE option_name = 'template'");
         echo 'Actual Value in database: '.$blogtemplate;
 }}}

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/575>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list