From f2a177c41884200305ad9cbab47be5b4abeb1c22 Mon Sep 17 00:00:00 2001 From: nacin Date: Thu, 11 Mar 2010 23:28:12 +0000 Subject: [PATCH] Fix typo in [13673]. see #12416 git-svn-id: http://svn.automattic.com/wordpress/trunk@13677 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 0f6f9c465..5b652fcec 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' ); }