From 81cadfe118940af3b9219038e979939d0dade332 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 3 Feb 2007 00:56:23 +0000 Subject: [PATCH] Typo fix from charleshooper. fixes #3743 git-svn-id: https://develop.svn.wordpress.org/trunk@4865 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 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');