block unregistered settings in multisite, see #11644, related #11730

git-svn-id: http://svn.automattic.com/wordpress/trunk@13709 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
wpmuguru 2010-03-15 18:10:34 +00:00
parent a51777ea84
commit 1aa48c2677
1 changed files with 2 additions and 0 deletions

View File

@ -109,6 +109,8 @@ if ( 'update' == $action ) {
if ( 'options' == $option_page )
$options = explode(',', stripslashes( $_POST[ 'page_options' ] ));
if( is_multisite() && !is_super_admin() )
wp_die( __( 'Not allowed here' ) );
else
$options = $whitelist_options[ $option_page ];