From 82605b706b04472456b67661817f84b15a28bb8c Mon Sep 17 00:00:00 2001 From: saxmatt Date: Thu, 25 Mar 2004 07:21:00 +0000 Subject: [PATCH] Recache options when updating. git-svn-id: http://svn.automattic.com/wordpress/trunk@1009 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index dfa393edd8..0b2587dc88 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -343,9 +343,11 @@ function get_alloptions() { } function update_option($option_name, $newvalue) { - global $wpdb, $tableoptions; + global $wpdb, $tableoptions, $cache_settings; // No validation at the moment $wpdb->query("UPDATE $tableoptions SET option_value = '$newvalue' WHERE option_name = '$option_name'"); + $cache_settings = get_alloptions(); // Re cache settings + return true; } function add_option() {