Make WordPress Core


Ignore:
Timestamp:
11/24/2010 12:19:38 AM (14 years ago)
Author:
ryan
Message:

Load network plugins for wp-activate.php. Restore MU load order. Props blamenacin. fixes #14718

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r16537 r16558  
    156156unset( $mu_plugin );
    157157
     158// Load network activated plugins.
     159if ( is_multisite() ) {
     160    foreach( wp_get_active_network_plugins() as $network_plugin ) {
     161        include_once( $network_plugin );
     162    }
     163    unset( $network_plugin );
     164}
     165
    158166do_action( 'muplugins_loaded' );
    159167
Note: See TracChangeset for help on using the changeset viewer.