From cab399a6aeefbf39b1b489aa91fd7f76f62d9f81 Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 3 Feb 2007 00:56:23 +0000 Subject: [PATCH] Typo fix from charleshooper. fixes #3743 git-svn-id: http://svn.automattic.com/wordpress/trunk@4865 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 c96ebd56bf..6d4a66b253 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -329,7 +329,7 @@ function update_option($option_name, $newvalue) { $alloptions = wp_load_alloptions(); if ( isset($alloptions[$option_name]) ) { - $alloptions[$options_name] = $newvalue; + $alloptions[$option_name] = $newvalue; wp_cache_set('alloptions', $alloptions, 'options'); } else { wp_cache_set($option_name, $newvalue, 'options');