Changeset 41242
- Timestamp:
- 08/12/2017 01:10:24 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r41241 r41242 793 793 * @since 3.1.0 794 794 * 795 * @global wpdb $wpdb WordPress database abstraction object.796 *797 795 * @param int $network_id The network ID to check. 798 796 * @return bool True if network can be edited, otherwise false. 799 797 */ 800 798 function can_edit_network( $network_id ) { 801 global $wpdb; 802 803 if ( $network_id == $wpdb->siteid ) 799 if ( $network_id == get_current_network_id() ) 804 800 $result = true; 805 801 else -
trunk/src/wp-includes/ms-blogs.php
r41200 r41242 1092 1092 _deprecated_argument( __FUNCTION__, 'MU' ); // never used 1093 1093 1094 return $wpdb->get_results( $wpdb->prepare( "SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' AND last_updated != '0000-00-00 00:00:00' ORDER BY last_updated DESC limit %d, %d", $wpdb->siteid, $start, $quantity ), ARRAY_A );1094 return $wpdb->get_results( $wpdb->prepare( "SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' AND last_updated != '0000-00-00 00:00:00' ORDER BY last_updated DESC limit %d, %d", get_current_network_id(), $start, $quantity ), ARRAY_A ); 1095 1095 } 1096 1096 -
trunk/src/wp-includes/ms-deprecated.php
r41241 r41242 188 188 189 189 global $wpdb; 190 $blogs = $wpdb->get_results( $wpdb->prepare( "SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' ORDER BY registered DESC", $wpdb->siteid), ARRAY_A );190 $blogs = $wpdb->get_results( $wpdb->prepare( "SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' ORDER BY registered DESC", get_current_network_id() ), ARRAY_A ); 191 191 192 192 $blog_list = array(); … … 431 431 432 432 if ( ! $domain ) 433 $network_id = $wpdb->siteid;433 $network_id = get_current_network_id(); 434 434 else 435 435 $network_id = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM $wpdb->site WHERE domain = %s AND path = %s", $domain, $path ) ); … … 447 447 * @deprecated 4.6.0 Use get_sites() 448 448 * @see get_sites() 449 *450 * @global wpdb $wpdb WordPress database abstraction object.451 449 * 452 450 * @param array $args { … … 469 467 */ 470 468 function wp_get_sites( $args = array() ) { 471 global $wpdb;472 473 469 _deprecated_function( __FUNCTION__, '4.6.0', 'get_sites()' ); 474 470 … … 477 473 478 474 $defaults = array( 479 'network_id' => $wpdb->siteid,475 'network_id' => get_current_network_id(), 480 476 'public' => null, 481 477 'archived' => null, -
trunk/src/wp-includes/ms-functions.php
r41241 r41242 73 73 if ( is_array( $blogs ) && count( $blogs ) > 0 ) { 74 74 foreach ( (array) $blogs as $blog_id => $blog ) { 75 if ( $blog->site_id != $wpdb->siteid)75 if ( $blog->site_id != get_current_network_id() ) 76 76 continue; 77 77 $details = get_site( $blog_id ); … … 1090 1090 } 1091 1091 1092 $blog_id = wpmu_create_blog( $signup->domain, $signup->path, $signup->title, $user_id, $meta, $wpdb->siteid);1092 $blog_id = wpmu_create_blog( $signup->domain, $signup->path, $signup->title, $user_id, $meta, get_current_network_id() ); 1093 1093 1094 1094 // TODO: What to do if we create a user but cannot create a blog? -
trunk/src/wp-includes/option.php
r41241 r41242 224 224 225 225 if ( empty($network_id) ) 226 $network_id = $wpdb->siteid;226 $network_id = get_current_network_id(); 227 227 228 228 $core_options = array('site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts', 'global_terms_enabled', 'ms_files_rewriting' ); -
trunk/src/wp-signup.php
r41200 r41242 355 355 */ 356 356 function validate_another_blog_signup() { 357 global $ wpdb, $blogname, $blog_title, $errors, $domain, $path;357 global $blogname, $blog_title, $errors, $domain, $path; 358 358 $current_user = wp_get_current_user(); 359 359 if ( ! is_user_logged_in() ) { … … 423 423 $meta = apply_filters( 'add_signup_meta', $meta_defaults ); 424 424 425 $blog_id = wpmu_create_blog( $domain, $path, $blog_title, $current_user->ID, $meta, $wpdb->siteid);425 $blog_id = wpmu_create_blog( $domain, $path, $blog_title, $current_user->ID, $meta, get_current_network_id() ); 426 426 427 427 if ( is_wp_error( $blog_id ) ) { -
trunk/tests/phpunit/tests/multisite/network.php
r40612 r41242 190 190 */ 191 191 public function test_get_blog_count_on_different_network() { 192 global $current_site, $wpdb; 193 194 // switch_to_network()... 195 $orig_network_id = $current_site->id; 196 $orig_wpdb_network_id = $wpdb->siteid; 197 $current_site->id = self::$different_network_id; 198 $wpdb->siteid = self::$different_network_id; 199 wp_update_network_site_counts(); 200 $current_site->id = $orig_network_id; 201 $wpdb->siteid = $orig_wpdb_network_id; 192 wp_update_network_site_counts( self::$different_network_id ); 202 193 203 194 $site_count = get_blog_count( self::$different_network_id ); … … 210 201 */ 211 202 public function test_get_user_count_on_different_network() { 212 global $current_site, $wpdb;213 214 203 wp_update_network_user_counts(); 215 204 $current_network_user_count = get_user_count(); 216 205 217 // switch_to_network()...218 $orig_network_id = $current_site->id;219 $orig_wpdb_network_id = $wpdb->siteid;220 $current_site->id = self::$different_network_id;221 $wpdb->siteid = self::$different_network_id;222 223 206 // Add another user to fake the network user count to be different. 224 207 wpmu_create_user( 'user', 'pass', 'email' ); 225 208 226 wp_update_network_user_counts(); 227 228 // restore_current_network()... 229 $current_site->id = $orig_network_id; 230 $wpdb->siteid = $orig_wpdb_network_id; 209 wp_update_network_user_counts( self::$different_network_id ); 231 210 232 211 $user_count = get_user_count( self::$different_network_id ); -
trunk/tests/phpunit/tests/option/multisite.php
r38762 r41242 149 149 */ 150 150 function test_site_notoptions() { 151 global $wpdb;152 $notoptions_key = "{$ wpdb->siteid}:notoptions";151 $network_id = get_current_network_id(); 152 $notoptions_key = "{$network_id}:notoptions"; 153 153 154 154 $_notoptions = wp_cache_get( 'notoptions', 'site-options' );
Note: See TracChangeset
for help on using the changeset viewer.