mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-05 07:01:42 +01:00
998704b8d7
git-svn-id: http://svn.automattic.com/wordpress/trunk@12926 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
297 B
PHP
15 lines
297 B
PHP
<?php
|
|
/**
|
|
* Load mulitsite uploaded media
|
|
*
|
|
* @since 3.0.0
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
*/
|
|
|
|
define( 'SHORTINIT', true );
|
|
require_once( dirname( dirname( __FILE__) ) . '/wp-load.php' ); // absolute includes are faster
|
|
require_once( WP_CONTENT_DIR . '/blogs.php' );
|
|
exit();
|