Changeset 4487

Show
Ignore:
Timestamp:
11/19/06 00:16:27 (2 years ago)
Author:
ryan
Message:

Reg singletons.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.0/wp-includes/cache.php

    r3813 r4487  
    3131 
    3232function 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(); 
    3634} 
    3735 
  • branches/2.0/wp-settings.php

    r3991 r4487  
    200200do_action('sanitize_comment_cookies'); 
    201201 
    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(); 
    205206 
    206207define('TEMPLATEPATH', get_template_directory());