Make WordPress Core

Ticket #38292: 38292.patch

File 38292.patch, 607 bytes (added by lukasbesch, 8 years ago)

Proposed fix

  • wp-includes/class-wp-theme.php

     
    10921092                $results = scandir( $path );
    10931093                $files = array();
    10941094
     1095                $exclusion = (array) apply_filters( 'theme_scandir_exclusions', array() );
     1096
    10951097                foreach ( $results as $result ) {
    10961098                        if ( '.' == $result[0] )
    10971099                                continue;
     1100                        if ( in_array( $result, $exclusion) )
     1101                          continue;
    10981102                        if ( is_dir( $path . '/' . $result ) ) {
    10991103                                if ( ! $depth || 'CVS' == $result )
    11001104                                        continue;