Make WordPress Core

Ticket #13525: 13525-handlediv_and_help.diff

File 13525-handlediv_and_help.diff, 1.2 KB (added by duck_, 15 years ago)
  • wp-admin/css/nav-menu.dev.css

     
    3434        padding:0 10px;
    3535}
    3636
    37 #menu-settings-column .handlediv {
    38         background: url("../images/menu-bits.gif") no-repeat scroll 0 -110px;
    39 }
    40 
    4137#wpbody {
    4238        position: relative;
    4339}
  • wp-admin/includes/nav-menu.php

     
    964964                $menu_items = wp_get_nav_menu_items( $menu->term_id, array('post_status' => 'any') );
    965965                $result = '<div id="menu-instructions" class="post-body-plain';
    966966                $result .= ( ! empty($menu_items) ) ? ' menu-instructions-inactive">' : '">';
    967                 $result .= __('Select menu items (pages, categories, links) from the boxes at left to begin building your custom menu.');
     967                $result .= __('Select menu items (pages, categories, links) from the boxes on the left to begin building your custom menu.');
    968968                $result .= '</div>';
    969969
    970970                if( empty($menu_items) )