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
This commit is contained in:
ryan 2006-09-02 20:27:51 +00:00
parent f8c681b9ef
commit c84524f349
1 changed files with 2 additions and 2 deletions

View File

@ -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');