Rename wp-includes/blogs.php to ms-blogs.php. See #11644

git-svn-id: https://develop.svn.wordpress.org/trunk@13159 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-02-15 01:08:23 +00:00
parent c95a891437
commit 8c98828c2f
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* Site/blog functions that work with the blogs table and related data. * Site/blog functions that work with the blogs table and related data.
* *
* @package WordPress * @package WordPress
* @subpackage Site * @subpackage Multisite
* @since 3.0.0 * @since 3.0.0
*/ */

View File

@ -80,7 +80,7 @@ include_once( ABSPATH . WPINC . '/pomo/mo.php' );
// Initialize multisite if enabled. // Initialize multisite if enabled.
if ( is_multisite() ) { if ( is_multisite() ) {
require( ABSPATH . WPINC . '/blogs.php' ); require( ABSPATH . WPINC . '/ms-blogs.php' );
require( ABSPATH . WPINC . '/ms-settings.php' ); require( ABSPATH . WPINC . '/ms-settings.php' );
} }