From c5e62bc71b1671bfb2afa2fdc9b3b61b177699cf Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 11 Mar 2010 23:28:12 +0000 Subject: [PATCH] Fix typo in [13673]. see #12416 git-svn-id: https://develop.svn.wordpress.org/trunk@13677 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 0f6f9c465d..5b652fcec7 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -515,7 +515,7 @@ function update_option( $option, $newvalue ) { $alloptions = wp_load_alloptions(); if ( isset( $alloptions[$option] ) ) { $alloptions[$option] = $_newvalue; - wp_cache_set( 'alloptions', $_alloptions, 'options' ); + wp_cache_set( 'alloptions', $alloptions, 'options' ); } else { wp_cache_set( $option, $_newvalue, 'options' ); }