mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +01:00
f3cae9b9d9
git-svn-id: http://svn.automattic.com/wordpress/trunk@12977 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
583 B
PHP
18 lines
583 B
PHP
<?php
|
|
/**
|
|
* Deprecated. Update your .htaccess file to use wp-includes/ms-files.php instead.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
*/
|
|
|
|
define( 'SHORTINIT', true );
|
|
require_once( dirname( dirname( __FILE__) ) . '/wp-load.php' );
|
|
/* l10n is not loaded on SHORTINIT */
|
|
_deprecated_file( basename( __FILE__ ), '3.0', null, sprintf( 'Change your rewrite rules to use <code>%1$s</code> instead of <code>%2$s</code>.', 'wp-includes/ms-files.php', 'wp-content/blogs.php' ) );
|
|
|
|
/** Load Multisite upload handler. */
|
|
require_once( ABSPATH . WPINC . '/ms-files.php' );
|
|
|
|
?>
|