From 4677ac0c77a347eb15ce113d8345e26b0a9e061f Mon Sep 17 00:00:00 2001 From: saxmatt Date: Thu, 22 Apr 2004 21:29:59 +0000 Subject: [PATCH] Trim when updating options. git-svn-id: http://svn.automattic.com/wordpress/trunk@1129 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 2475a1d911..ebf47d4098 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -331,7 +331,9 @@ function get_alloptions() { function update_option($option_name, $newvalue) { global $wpdb, $tableoptions, $cache_settings; - // No validation at the moment + $newvalue = stripslashes($newvalue); + $newvalue = trim($newvalue); // I can't think of any situation we wouldn't want to trim + $newvalue = $wpdb->escape($newvalue); $wpdb->query("UPDATE $tableoptions SET option_value = '$newvalue' WHERE option_name = '$option_name'"); $cache_settings = get_alloptions(); // Re cache settings return true;