diff --git a/wp-settings.php b/wp-settings.php index 553c67d4b..4a35fb876 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -257,10 +257,13 @@ $prefix = $wpdb->set_prefix($table_prefix); if ( is_wp_error($prefix) ) wp_die(/*WP_I18N_BAD_PREFIX*/'ERROR: $table_prefix in wp-config.php can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/); -if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') ) +if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') ) { require_once (WP_CONTENT_DIR . '/object-cache.php'); -else + $_wp_using_ext_object_cache = true; +} else { require_once (ABSPATH . WPINC . '/cache.php'); + $_wp_using_ext_object_cache = false; +} wp_cache_init(); if ( function_exists('wp_cache_add_global_groups') ) {