﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
14718,Network plugins not loaded on wp-activate.php in multisite mode,sbrajesh,nacin,"In wordpress 3.0/3.0.1 when the site is installed as network mode, none of the sitewide active plugins are loaded on the user activation page.

A little test shows the problem is with the ""wp_get_active_and_valid_plugins"" function in the wp-includes/load.php

It returns empty array if WP_INSTALLING is defined which is the case with the wp-activate.php.

Changing line 470-471 from

{{{
if ( empty( $active_plugins ) || defined( 'WP_INSTALLING' ) )
		return $plugins;
}}}



to

{{{
if ( empty( $active_plugins )  )
		return $plugins;
}}}

solves it on the active installation. 

The above behavior is in contradiction with the wpmu 2.9.2 behavior where sitewide active plugins were loaded on the activation page.",defect (bug),closed,normal,3.1,Multisite,3.0.1,blocker,fixed,has-patch,sbrajesh wpmuguru
