Make WordPress Core

Changeset 9337


Ignore:
Timestamp:
10/24/2008 10:40:19 PM (16 years ago)
Author:
ryan
Message:

If parent uses admin.php, use admin.php for subs. fixes #7962

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/menu-header.php

    r9306 r9337  
    3737    // 0 = name, 1 = capability, 2 = file, 3 = class, 4 = id, 5 = icon src
    3838    foreach ( $menu as $key => $item ) {
     39        $admin_is_parent = false;
    3940        $class = array();
    4041        if ( $first ) {
     
    6768            $submenu[$item[2]] = array_values($submenu[$item[2]]);  // Re-index.
    6869            $menu_hook = get_plugin_page_hook($submenu[$item[2]][0][2], $item[2]);
    69             if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook))
     70            if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook)) {
     71                $admin_is_parent = true;
    7072                echo "$img$toggle<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>";
    71             else
     73            } else {
    7274                echo "\n\t$img$toggle<a href='{$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>";
     75            }
    7376        } else if ( current_user_can($item[1]) ) {
    7477            $menu_hook = get_plugin_page_hook($item[2], 'admin.php');
    7578            if ( file_exists(WP_PLUGIN_DIR . "/{$item[2]}") || !empty($menu_hook) ) {
     79                $admin_is_parent = true;
    7680                echo "\n\t$img$toggle<a href='admin.php?page={$item[2]}'$class>{$item[0]}</a>";
    7781            } else {
     
    107111                if ( file_exists(WP_PLUGIN_DIR . "/{$sub_item[2]}") || ! empty($menu_hook) ) {
    108112                    // If admin.php is the current page or if the parent exists as a file in the plugins or admin dir
    109                     $parent_exists = (file_exists(WP_PLUGIN_DIR . "/{$item[2]}") && !is_dir(WP_PLUGIN_DIR . "/{$item[2]}") ) || file_exists($item[2]);
     113                    $parent_exists = (!$admin_is_parent && file_exists(WP_PLUGIN_DIR . "/{$item[2]}") && !is_dir(WP_PLUGIN_DIR . "/{$item[2]}") ) || file_exists($item[2]);
    110114                    if ( $parent_exists )
    111115                        echo "<li$class><a href='{$item[2]}?page={$sub_item[2]}'$class>{$sub_item[0]}</a></li>";
Note: See TracChangeset for help on using the changeset viewer.