Changeset 35688
- Timestamp:
- 11/18/2015 08:48:24 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r35644 r35688 40 40 'audio.php' => __('Audio Attachment Template'), 41 41 'application.php' => __('Application Attachment Template'), 42 'my-hacks.php' => __( 'my-hacks.php (legacy hacks support)' ), 42 43 '.htaccess' => __( '.htaccess (for rewrite rules )' ), 43 44 // Deprecated files -
trunk/src/wp-admin/includes/schema.php
r35638 r35688 421 421 'moderation_notify' => 1, 422 422 'permalink_structure' => '', 423 'hack_file' => 0, 423 424 'blog_charset' => 'UTF-8', 424 425 'moderation_keys' => '', -
trunk/src/wp-includes/load.php
r35641 r35688 553 553 $plugins = array(); 554 554 $active_plugins = (array) get_option( 'active_plugins', array() ); 555 556 // Check for hacks file if the option is enabled 557 if ( get_option( 'hack_file' ) && file_exists( ABSPATH . 'my-hacks.php' ) ) { 558 _deprecated_file( 'my-hacks.php', '1.5' ); 559 array_unshift( $plugins, ABSPATH . 'my-hacks.php' ); 560 } 561 555 562 if ( empty( $active_plugins ) || wp_installing() ) 556 563 return $plugins;
Note: See TracChangeset
for help on using the changeset viewer.