From 39957f273e18563b1f178a35951d4e570bcedb1a Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 28 Jan 2010 17:16:58 +0000 Subject: [PATCH] Add ms-default-constants.php. Props nacin. see #11881 git-svn-id: http://svn.automattic.com/wordpress/trunk@12886 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-default-constants.php | 64 ++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 wp-includes/ms-default-constants.php diff --git a/wp-includes/ms-default-constants.php b/wp-includes/ms-default-constants.php new file mode 100644 index 000000000..a349aef21 --- /dev/null +++ b/wp-includes/ms-default-constants.php @@ -0,0 +1,64 @@ +blogid}/files/" ); + + if ( !defined( 'BLOGUPLOADDIR' ) ) + define( 'BLOGUPLOADDIR', WP_CONTENT_DIR . "/blogs.dir/{$wpdb->blogid}/files/" ); + break; + case 'cookies' : + global $current_site; + /** + * It is possible to define this in wp-config.php + * @since 1.2.0 + */ + if ( !defined( 'COOKIEPATH' ) ) + define( 'COOKIEPATH', $current_site->path ); + + /** + * It is possible to define this in wp-config.php + * @since 1.5.0 + */ + if ( !defined( 'SITECOOKIEPATH' ) ) + define( 'SITECOOKIEPATH', $current_site->path ); + + /** + * It is possible to define this in wp-config.php + * @since 2.6.0 + */ + if ( !defined( 'ADMIN_COOKIE_PATH' ) ) { + if( !is_subdomain_install() ) { + define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH ); + } else { + define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' ); + } + } + /** + * It is possible to define this in wp-config.php + * @since 2.0.0 + */ + if ( !defined('COOKIE_DOMAIN') ) + define('COOKIE_DOMAIN', '.' . $current_site->cookie_domain); + break; + } +} +?> \ No newline at end of file