Ticket #46286: 46286.0.diff
File 46286.0.diff, 1.4 KB (added by , 5 years ago) |
---|
-
wp-admin/includes/plugin.php
387 387 $wp_plugins[ $plugin_file ] = $plugin_data; 388 388 } 389 389 390 if ( isset( $wp_plugins['index.php'] ) && filesize( WPMU_PLUGIN_DIR . '/index.php' ) <= 30) { // silence is golden390 if ( isset( $wp_plugins['index.php'] ) && filesize( WPMU_PLUGIN_DIR . '/index.php' ) <= 64 ) { // silence is golden 391 391 unset( $wp_plugins['index.php'] ); 392 392 } 393 393 -
wp-content/index.php
1 1 <?php 2 2 // Silence is golden. 3 header( 'HTTP/1.0 404 Not Found' ); -
wp-content/plugins/index.php
1 1 <?php 2 2 // Silence is golden. 3 header( 'HTTP/1.0 404 Not Found' ); -
wp-content/themes/index.php
1 1 <?php 2 2 // Silence is golden. 3 header( 'HTTP/1.0 404 Not Found' );