Fix notice. Props ionfish. fixes #9018

git-svn-id: http://svn.automattic.com/wordpress/trunk@10631 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-02-23 06:12:53 +00:00
parent 2238d7148b
commit 87d69b6268
1 changed files with 6 additions and 3 deletions

View File

@ -89,9 +89,12 @@ if ( $http_post && isset($sidebars_widgets[$_POST['sidebar']]) ) {
ob_end_clean();
// Prophylactic. Take out empty ids.
foreach ( (array) $_POST['widget-id'] as $key => $val )
if ( !$val )
unset($_POST['widget-id'][$key]);
if ( isset($_POST['widget-id']) ) {
foreach ( (array) $_POST['widget-id'] as $key => $val ) {
if ( !$val )
unset($_POST['widget-id'][$key]);
}
}
// Reset the key numbering and store
$new_sidebar = isset( $_POST['widget-id'] ) && is_array( $_POST['widget-id'] ) ? array_values( $_POST['widget-id'] ) : array();