From c84524f3490a4b4796e2bc6a1262f393fcb3d4de Mon Sep 17 00:00:00 2001 From: ryan 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: http://svn.automattic.com/wordpress/trunk@4160 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-settings.php b/wp-settings.php index 0040dc6b5..c112f8d1e 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');