Changeset 12730
- Timestamp:
- 01/15/2010 06:02:34 PM (15 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-functions.php
r12709 r12730 309 309 $current_user->_init_caps(); 310 310 311 if ( is_object( $wp_object_cache ) )311 if ( is_object( $wp_object_cache ) && isset( $wp_object_cache->global_groups ) ) 312 312 $global_groups = $wp_object_cache->global_groups; 313 313 else … … 362 362 $current_user->_init_caps(); 363 363 364 if ( is_object( $wp_object_cache ) )364 if ( is_object( $wp_object_cache ) && isset( $wp_object_cache->global_groups ) ) 365 365 $global_groups = $wp_object_cache->global_groups; 366 366 else -
trunk/wp-includes/ms-load.php
r12688 r12730 18 18 $wpdb->siteid = $current_blog->site_id; 19 19 $wpdb->set_prefix($table_prefix); // set up blog tables 20 $table_prefix = $ table_prefix . $blog_id . '_';20 $table_prefix = $wpdb->get_blog_prefix(); 21 21 22 22 // Fix empty PHP_SELF
Note: See TracChangeset
for help on using the changeset viewer.