summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-includes/functions.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-01-26 14:36:37 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-01-26 14:36:37 +0000
commit7322c2da3ce036e18768aa2f79bc4897796b6ac8 (patch)
tree34d306e51f3871eb3deaadd109885db0c1018444 /wp-inst/wp-includes/functions.php
parentf9e594920ce4ed7c66e130cf52bf03c55364ab2e (diff)
downloadwordpress-mu-7322c2da3ce036e18768aa2f79bc4897796b6ac8.tar.gz
wordpress-mu-7322c2da3ce036e18768aa2f79bc4897796b6ac8.tar.xz
wordpress-mu-7322c2da3ce036e18768aa2f79bc4897796b6ac8.zip
WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@519 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-includes/functions.php')
-rw-r--r--wp-inst/wp-includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-inst/wp-includes/functions.php b/wp-inst/wp-includes/functions.php
index a780ad3..61d5278 100644
--- a/wp-inst/wp-includes/functions.php
+++ b/wp-inst/wp-includes/functions.php
@@ -379,7 +379,7 @@ function update_option($option_name, $newvalue) {
$option_name = $wpdb->escape($option_name);
$wpdb->query("UPDATE $wpdb->options SET option_value = '$newvalue' WHERE option_name = '$option_name'");
if ( $wpdb->rows_affected == 1 ) {
- do_action('update_option_{$option_name}', $oldvalue, $newvalue);
+ do_action("update_option_{$option_name}", $oldvalue, $newvalue);
return true;
}
return false;