Changeset 30404 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 11/20/2014 06:52:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r30177 r30404 86 86 $current_site = get_current_site(); 87 87 88 // If a full blog object is not available, do not destroy anything. 89 if ( $drop && ! $blog ) { 90 $drop = false; 91 } 92 88 93 // Don't destroy the initial, main, or root blog. 89 if ( $drop && ( 1 == $blog_id || is_main_site( $blog_id ) || ( $blog->path == $current_site->path && $blog->domain == $current_site->domain ) ) ) 94 if ( $drop && ( 1 == $blog_id || is_main_site( $blog_id ) || ( $blog->path == $current_site->path && $blog->domain == $current_site->domain ) ) ) { 90 95 $drop = false; 96 } 97 98 $upload_path = trim( get_option( 'upload_path' ) ); 99 100 // If ms_files_rewriting is enabled and upload_path is empty, wp_upload_dir is not reliable. 101 if ( $drop && get_site_option( 'ms_files_rewriting' ) && empty( $upload_path ) ) { 102 $drop = false; 103 } 91 104 92 105 if ( $drop ) { 106 $uploads = wp_upload_dir(); 107 93 108 $tables = $wpdb->tables( 'blog' ); 94 109 /** … … 108 123 $wpdb->delete( $wpdb->blogs, array( 'blog_id' => $blog_id ) ); 109 124 110 $uploads = wp_upload_dir();111 125 /** 112 126 * Filter the upload base directory to delete when the blog is deleted.
Note: See TracChangeset
for help on using the changeset viewer.