[wp-trac] [WordPress Trac] #14718: Network plugins not loaded on wp-activate.php in multisite mode
WordPress Trac
wp-trac at lists.automattic.com
Mon Sep 5 10:57:31 UTC 2011
#14718: Network plugins not loaded on wp-activate.php in multisite mode
-------------------------------------+-----------------------
Reporter: sbrajesh | Owner: nacin
Type: defect (bug) | Status: reopened
Priority: normal | Milestone: 3.1
Component: Multisite | Version: 3.2.1
Severity: blocker | Resolution:
Keywords: has-patch needs-refresh |
-------------------------------------+-----------------------
Changes (by plastia):
* keywords: has-patch => has-patch needs-refresh
* status: closed => reopened
* version: 3.0.1 => 3.2.1
* resolution: fixed =>
Comment:
I noticed that changes made on diff.1 are not the same in diff.3
{{{
if ( empty( $active_plugins ) || defined( 'WP_INSTALLING' ) )
return $plugins;
}}}
is still on the code on diff 3 in wp-includes/load.php, and it's causing
the error appearing again.
Removing it resolves the issue, and we need to apply it to the actual
revision for next upgrades to take effect. So it should be
{{{
if ( empty( $active_plugins ) )
return $plugins;
}}}
instead.
--
Ticket URL: <http://core.trac.wordpress.org/ticket/14718#comment:13>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list