Make WordPress Core

Ticket #40581: #40581.patch

File #40581.patch, 680 bytes (added by Arena94, 7 years ago)

patch

  • wp-admin/includes/class-wp-screen.php

     
    10651065                        return;
    10661066                }
    10671067
     1068                $special = array( '_title', 'cb', 'comment', 'media', 'name', 'title', 'username', 'blogname' );
     1069                if ( count( array_intersect ( $special, array_keys( $columns ) ) ) == count( $columns ) ) // if all columns are "special", no columns in screen options
     1070                {
     1071                        return;
     1072                }
     1073
    10681074                $legend = ! empty( $columns['_title'] ) ? $columns['_title'] : __( 'Columns' );
    10691075                ?>
    10701076                <fieldset class="metabox-prefs">