Created
February 16, 2013 22:26
-
-
Save jkudish/4969000 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: wp-admin/nav-menus.php | |
=================================================================== | |
--- wp-admin/nav-menus.php (revision 23446) | |
+++ wp-admin/nav-menus.php (working copy) | |
@@ -264,6 +264,8 @@ | |
// Get existing menu locations assignments | |
$locations = get_registered_nav_menus(); | |
$menu_locations = get_nav_menu_locations(); | |
+ if ( empty( $menu_locations ) || ! is_array( $menu_locations ) ) | |
+ $menu_locations = array(); | |
// Remove menu locations that have been unchecked | |
foreach ( $locations as $location => $description ) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment