From f25c1e989b210e7c005801263defff3f5a5278ef Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 5 Jul 2014 02:12:47 +0000 Subject: [PATCH] Don't include plugin.php twice in setup-config.php. fixes #28744. see #28740, [28978]. git-svn-id: https://develop.svn.wordpress.org/trunk@29005 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/setup-config.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wp-admin/setup-config.php b/src/wp-admin/setup-config.php index f222da4a73..5e938d57db 100644 --- a/src/wp-admin/setup-config.php +++ b/src/wp-admin/setup-config.php @@ -30,8 +30,6 @@ error_reporting(-1); define( 'ABSPATH', dirname( dirname( __FILE__ ) ) . '/' ); -require_once( ABSPATH . 'wp-includes/plugin.php' ); -add_action( 'plugins_loaded', 'wp_load_translations_early' ); require( ABSPATH . 'wp-settings.php' ); // Support wp-config-sample.php one level up, for the develop repo.