In add_submenu_page(), avoid inadvertently copying classes of a menu item to the first submenu item.
fixes #28936. Built from https://develop.svn.wordpress.org/trunk@29326 git-svn-id: http://core.svn.wordpress.org/trunk@29107 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8aec296fe8
commit
ab3ce81661
|
@ -1128,7 +1128,7 @@ function add_submenu_page( $parent_slug, $page_title, $menu_title, $capability,
|
|||
if (!isset( $submenu[$parent_slug] ) && $menu_slug != $parent_slug ) {
|
||||
foreach ( (array)$menu as $parent_menu ) {
|
||||
if ( $parent_menu[2] == $parent_slug && current_user_can( $parent_menu[1] ) )
|
||||
$submenu[$parent_slug][] = $parent_menu;
|
||||
$submenu[$parent_slug][] = array_slice( $parent_menu, 0, 4 );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue