Changeset 34291
- Timestamp:
- 09/18/2015 05:05:28 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r34290 r34291 37 37 'audio.php' => __('Audio Attachment Template'), 38 38 'application.php' => __('Application Attachment Template'), 39 'my-hacks.php' => __( 'my-hacks.php (legacy hacks support)' ),40 39 '.htaccess' => __( '.htaccess (for rewrite rules )' ), 41 40 // Deprecated files -
trunk/src/wp-admin/includes/schema.php
r34030 r34291 413 413 'permalink_structure' => '', 414 414 'gzipcompression' => 0, 415 'hack_file' => 0,416 415 'blog_charset' => 'UTF-8', 417 416 'moderation_keys' => '', -
trunk/src/wp-includes/load.php
r33935 r34291 528 528 $plugins = array(); 529 529 $active_plugins = (array) get_option( 'active_plugins', array() ); 530 531 // Check for hacks file if the option is enabled532 if ( get_option( 'hack_file' ) && file_exists( ABSPATH . 'my-hacks.php' ) ) {533 _deprecated_file( 'my-hacks.php', '1.5' );534 array_unshift( $plugins, ABSPATH . 'my-hacks.php' );535 }536 537 530 if ( empty( $active_plugins ) || defined( 'WP_INSTALLING' ) ) 538 531 return $plugins;
Note: See TracChangeset
for help on using the changeset viewer.