Changeset 26120 for trunk/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 11/13/2013 03:22:48 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r25133 r26120 460 460 */ 461 461 function wp_getUsersBlogs( $args ) { 462 global $current_site;463 462 // If this isn't on WPMU then just use blogger_getUsersBlogs 464 463 if ( !is_multisite() ) { … … 482 481 foreach ( $blogs as $blog ) { 483 482 // Don't include blogs that aren't hosted at this site 484 if ( $blog->site_id != $current_site->id )483 if ( $blog->site_id != get_current_site()->id ) 485 484 continue; 486 485
Note: See TracChangeset
for help on using the changeset viewer.