Changeset 34291 for trunk/src/wp-includes/load.php
- Timestamp:
- 09/18/2015 05:05:28 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.