summaryrefslogtreecommitdiffstats
path: root/wp-admin/options.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-12 16:21:15 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-12 16:21:15 +0000
commit3a4570b0fc8b3d6339bef71d17d7701554e0bbf7 (patch)
tree2a06e5261263c68d8afd95a6328879dc289cb909 /wp-admin/options.php
parentb83c34a7010faee0223f6037025c350da12e05e6 (diff)
downloadwordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.tar.gz
wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.tar.xz
wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.zip
Merge with WP 2.3 - testing use only!
Move pluggable functions out of wpmu-functions and into pluggable.php, fixes #439 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1069 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/options.php')
-rw-r--r--wp-admin/options.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/wp-admin/options.php b/wp-admin/options.php
index baccbe3..cb5763e 100644
--- a/wp-admin/options.php
+++ b/wp-admin/options.php
@@ -42,15 +42,14 @@ case 'update':
if ($options) {
foreach ($options as $option) {
$option = trim($option);
- $value = trim($_POST[$option]);
- $value = sanitize_option($option, $value); // This does stripslashes on those that need it
+ $value = $_POST[$option];
+ if(!is_array($value)) $value = trim($value);
+ $value = stripslashes_deep($value);
update_option($option, $value);
}
}
-
- $referred = remove_query_arg('updated' , wp_get_referer());
+
$goback = add_query_arg('updated', 'true', wp_get_referer());
- $goback = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $goback);
wp_redirect($goback);
break;
@@ -98,7 +97,6 @@ foreach ( (array) $options as $option) :
else echo "<input class='$class' type='text' name='$option->option_name' id='$option->option_name' size='30' value='" . attribute_escape($value) . "'$disabled />";
echo "</td>
- <td>$option->option_description</td>
</tr>";
endforeach;
?>