Make WordPress Core

Ticket #39362: 39362.patch

File 39362.patch, 868 bytes (added by dingo_bastard, 8 years ago)

Proposed patch for the issue

  • src/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php

     
    4242        protected function content_template() {
    4343                ?>
    4444                <span class="customize-control-title"><?php _e( 'Menu Options' ); ?></span>
    45                 <label>
    46                         <input type="checkbox" class="auto_add" />
    47                         <?php _e( 'Automatically add new top-level pages to this menu' ); ?>
    48                 </label>
     45                <li class="customize-control customize-control-checkbox">
     46                        <label>
     47                                <input type="checkbox" class="auto_add" />
     48                                <?php _e( 'Automatically add new top-level pages to this menu' ); ?>
     49                        </label>
     50                </li>
    4951                <?php
    5052        }
    5153}