Ensure we're saving valid menu locations. for 3.0.
git-svn-id: http://svn.automattic.com/wordpress/branches/3.0@15453 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
34e87a7286
commit
15c1631eac
|
@ -1144,7 +1144,7 @@ case 'menu-locations-save':
|
|||
check_ajax_referer( 'add-menu_item', 'menu-settings-column-nonce' );
|
||||
if ( ! isset( $_POST['menu-locations'] ) )
|
||||
die('0');
|
||||
set_theme_mod( 'nav_menu_locations', $_POST['menu-locations'] );
|
||||
set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_POST['menu-locations'] ) );
|
||||
die('1');
|
||||
break;
|
||||
case 'meta-box-order':
|
||||
|
|
Loading…
Reference in New Issue