Changeset 13127 for trunk/wp-includes/ms-default-constants.php
- Timestamp:
- 02/14/2010 12:12:08 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-default-constants.php
r13065 r13127 62 62 * @since 2.0.0 63 63 */ 64 if ( !defined('COOKIE_DOMAIN') ) 65 define('COOKIE_DOMAIN', '.' . $current_site->cookie_domain); 64 if ( !defined('COOKIE_DOMAIN') ) { 65 if ( isset( $current_site->cookie_domain ) ) 66 define('COOKIE_DOMAIN', '.' . $current_site->cookie_domain); 67 else 68 define('COOKIE_DOMAIN', '.' . $current_site->domain); 69 } 66 70 } 67 71
Note: See TracChangeset
for help on using the changeset viewer.