Ref more singletons.
git-svn-id: http://svn.automattic.com/wordpress/trunk@4486 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9705c29507
commit
92421de747
|
@ -30,9 +30,7 @@ function wp_cache_get($id, $flag = '') {
|
||||||
}
|
}
|
||||||
|
|
||||||
function wp_cache_init() {
|
function wp_cache_init() {
|
||||||
global $wp_object_cache;
|
$GLOBALS['wp_object_cache'] =& new WP_Object_Cache();
|
||||||
|
|
||||||
$wp_object_cache = new WP_Object_Cache();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function wp_cache_replace($key, $data, $flag = '', $expire = 0) {
|
function wp_cache_replace($key, $data, $flag = '', $expire = 0) {
|
||||||
|
|
|
@ -241,7 +241,7 @@ load_default_textdomain();
|
||||||
// Pull in locale data after loading text domain.
|
// Pull in locale data after loading text domain.
|
||||||
require_once(ABSPATH . WPINC . '/locale.php');
|
require_once(ABSPATH . WPINC . '/locale.php');
|
||||||
|
|
||||||
$wp_locale = new WP_Locale();
|
$wp_locale =& new WP_Locale();
|
||||||
|
|
||||||
// Load functions for active theme.
|
// Load functions for active theme.
|
||||||
if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') )
|
if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') )
|
||||||
|
|
Loading…
Reference in New Issue