Changeset 1298
- Timestamp:
- 05/19/2008 03:22:13 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
wp-activate.php (modified) (1 diff)
-
wp-includes/wpmu-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-activate.php
r942 r1298 3 3 require ('wp-config.php'); 4 4 require_once( ABSPATH . WPINC . '/registration.php'); 5 6 if( is_object( $wp_object_cache ) ) $wp_object_cache->cache_enabled = false; 5 7 6 8 do_action("activate_header"); -
trunk/wp-includes/wpmu-functions.php
r1283 r1298 1139 1139 1140 1140 function wpmu_create_blog($domain, $path, $title, $user_id, $meta = '', $site_id = 1) { 1141 global $wp_object_cache; 1141 1142 $domain = sanitize_user( $domain ); 1142 1143 $title = strip_tags( $title ); … … 1152 1153 if ( !defined("WP_INSTALLING") ) 1153 1154 define( "WP_INSTALLING", true ); 1155 if( is_object( $wp_object_cache ) ) $wp_object_cache->cache_enabled = false; 1154 1156 1155 1157 if ( ! $blog_id = insert_blog($domain, $path, $site_id) )
Note: See TracChangeset
for help on using the changeset viewer.