Make WordPress Core


Ignore:
Timestamp:
01/26/2010 06:39:12 PM (15 years ago)
Author:
ryan
Message:

Remove fix_actve_plugins(). Props hakre. fixes #11750

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/load.php

    r12762 r12848  
    405405            $plugins[] = ABSPATH . 'my-hacks.php';
    406406
    407     $active_plugins = apply_filters( 'active_plugins', get_option( 'active_plugins' ) );
     407    $active_plugins = apply_filters( 'active_plugins', get_option( 'active_plugins', array() ) );
    408408    if ( !is_array( $active_plugins ) || defined( 'WP_INSTALLING' ) )
    409409        return $plugins;
Note: See TracChangeset for help on using the changeset viewer.