Changeset 38915 for trunk/src/wp-includes/ms-blogs.php
- Timestamp:
- 10/25/2016 06:49:03 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/ms-blogs.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-blogs.php
r38814 r38915 39 39 */ 40 40 function get_blogaddress_by_id( $blog_id ) { 41 $bloginfo = get_ blog_details( (int) $blog_id );41 $bloginfo = get_site( (int) $blog_id ); 42 42 43 43 if ( empty( $bloginfo ) ) { … … 267 267 } 268 268 269 $details = get_ blog_details( $blog_id, false);269 $details = get_site( $blog_id ); 270 270 if ( ! $details ) { 271 271 // Make sure clean_blog_cache() gets the blog ID … … 311 311 $details = get_object_vars($details); 312 312 313 $current_details = get_ blog_details($blog_id, false);313 $current_details = get_site( $blog_id ); 314 314 if ( empty($current_details) ) 315 315 return false; … … 1039 1039 global $wpdb; 1040 1040 1041 $details = get_ blog_details( $id, false);1041 $details = get_site( $id ); 1042 1042 if ( $details ) 1043 1043 return $details->$pref;
Note: See TracChangeset
for help on using the changeset viewer.