From 873e447e6b2b1d170eb549d62ff026dda823198f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 2 Sep 2006 20:27:51 +0000 Subject: [PATCH] db.php instead of wp-db.php for pluggable DB load. #2721 git-svn-id: https://develop.svn.wordpress.org/trunk@4160 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-settings.php b/wp-settings.php index 0040dc6b52..c112f8d1e1 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -69,8 +69,8 @@ if ( defined('WP_CACHE') ) require (ABSPATH . 'wp-content/advanced-cache.php'); define('WPINC', 'wp-includes'); -if ( file_exists(ABSPATH . 'wp-content/wp-db.php') ) - require (ABSPATH . 'wp-content/wp-db.php'); +if ( file_exists(ABSPATH . 'wp-content/db.php') ) + require (ABSPATH . 'wp-content/db.php'); else require_once (ABSPATH . WPINC . '/wp-db.php');