Changeset 35688 for trunk/src/wp-includes/load.php
- Timestamp:
- 11/18/2015 08:48:24 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.