Don't cache option values while installing. See #12140.
git-svn-id: https://develop.svn.wordpress.org/trunk@14502 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5c534591ae
commit
f5d0ab2f21
|
@ -338,6 +338,7 @@ function get_option( $option, $default = false ) {
|
||||||
// Has to be get_row instead of get_var because of funkiness with 0, false, null values
|
// Has to be get_row instead of get_var because of funkiness with 0, false, null values
|
||||||
if ( is_object( $row ) ) {
|
if ( is_object( $row ) ) {
|
||||||
$value = $row->option_value;
|
$value = $row->option_value;
|
||||||
|
if ( ! defined( 'WP_INSTALLING' ) )
|
||||||
wp_cache_add( $option, $value, 'options' );
|
wp_cache_add( $option, $value, 'options' );
|
||||||
} else { // option does not exist, so we must cache its non-existence
|
} else { // option does not exist, so we must cache its non-existence
|
||||||
$notoptions[$option] = true;
|
$notoptions[$option] = true;
|
||||||
|
|
Loading…
Reference in New Issue