From b1f3de70e78c82d968a010b6cb54ad4a1733d726 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Thu, 7 Apr 2011 15:47:04 +0000 Subject: [PATCH] Restore compat.php includes. see #16918 git-svn-id: http://svn.automattic.com/wordpress/trunk@17622 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/setup-config.php | 1 + wp-settings.php | 1 + 2 files changed, 2 insertions(+) diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php index 62b9086d1..244cdc45d 100644 --- a/wp-admin/setup-config.php +++ b/wp-admin/setup-config.php @@ -40,6 +40,7 @@ define('WP_DEBUG', false); /**#@-*/ require_once(ABSPATH . WPINC . '/load.php'); +require_once(ABSPATH . WPINC . '/compat.php'); require_once(ABSPATH . WPINC . '/functions.php'); require_once(ABSPATH . WPINC . '/class-wp-error.php'); require_once(ABSPATH . WPINC . '/version.php'); diff --git a/wp-settings.php b/wp-settings.php index 63cb9d39a..5cb283848 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -63,6 +63,7 @@ if ( WP_CACHE ) wp_set_lang_dir(); // Load early WordPress files. +require( ABSPATH . WPINC . '/compat.php' ); require( ABSPATH . WPINC . '/functions.php' ); require( ABSPATH . WPINC . '/class-wp.php' ); require( ABSPATH . WPINC . '/class-wp-error.php' );