Changeset 4487
- Timestamp:
- 11/19/06 00:16:27 (2 years ago)
- Files:
-
- branches/2.0/wp-includes/cache.php (modified) (1 diff)
- branches/2.0/wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/cache.php
r3813 r4487 31 31 32 32 function wp_cache_init() { 33 global $wp_object_cache; 34 35 $wp_object_cache = new WP_Object_Cache(); 33 $GLOBALS['wp_object_cache'] =& new WP_Object_Cache(); 36 34 } 37 35 branches/2.0/wp-settings.php
r3991 r4487 200 200 do_action('sanitize_comment_cookies'); 201 201 202 $wp_query = new WP_Query(); 203 $wp_rewrite = new WP_Rewrite(); 204 $wp = new WP(); 202 $wp_the_query =& new WP_Query(); 203 $wp_query =& $wp_the_query; 204 $wp_rewrite =& new WP_Rewrite(); 205 $wp =& new WP(); 205 206 206 207 define('TEMPLATEPATH', get_template_directory());
