mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Dont define BLOGUPLOADDIR if UPLOADS is defined, see #12558
git-svn-id: http://svn.automattic.com/wordpress/trunk@13632 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6c39dc36e4
commit
8c9d21d3c5
@ -15,16 +15,17 @@ function ms_upload_constants( ) {
|
|||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
/** @since 3.0.0 */
|
/** @since 3.0.0 */
|
||||||
|
// Base uploads dir relative to ABSPATH
|
||||||
if ( !defined( 'UPLOADBLOGSDIR' ) )
|
if ( !defined( 'UPLOADBLOGSDIR' ) )
|
||||||
define( 'UPLOADBLOGSDIR', 'wp-content/blogs.dir' );
|
define( 'UPLOADBLOGSDIR', 'wp-content/blogs.dir' );
|
||||||
|
|
||||||
/** @since 3.0.0 */
|
/** @since 3.0.0 */
|
||||||
if ( !defined( 'UPLOADS' ) )
|
if ( !defined( 'UPLOADS' ) ) {
|
||||||
|
// Uploads dir relative to ABSPATH
|
||||||
define( 'UPLOADS', UPLOADBLOGSDIR . "/{$wpdb->blogid}/files/" );
|
define( 'UPLOADS', UPLOADBLOGSDIR . "/{$wpdb->blogid}/files/" );
|
||||||
|
if ( 'wp-content/blogs.dir' == UPLOADBLOGSDIR )
|
||||||
/** @since 3.0.0 */
|
define( 'BLOGUPLOADDIR', WP_CONTENT_DIR . "/blogs.dir/{$wpdb->blogid}/files/" );
|
||||||
if ( !defined( 'BLOGUPLOADDIR' ) )
|
}
|
||||||
define( 'BLOGUPLOADDIR', WP_CONTENT_DIR . "/blogs.dir/{$wpdb->blogid}/files/" );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user