Changeset 9067
- Timestamp:
- 10/02/08 16:45:28 (2 months ago)
- Files:
-
- trunk/wp-admin/setup-config.php (modified) (1 diff)
- trunk/wp-includes/wp-db.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/setup-config.php
r8887 r9067 17 17 */ 18 18 define('WP_INSTALLING', true); 19 //These three defines are required to allow us to use require_wp_db() to load the database class while being wp-content/ wp-db.php aware19 //These three defines are required to allow us to use require_wp_db() to load the database class while being wp-content/db.php aware 20 20 define('ABSPATH', dirname(dirname(__FILE__)).'/'); 21 21 define('WPINC', 'wp-includes'); trunk/wp-includes/wp-db.php
r8740 r9067 39 39 * 40 40 * It is possible to replace this class with your own 41 * by setting the $wpdb global variable in wp-content/ wpdb.php41 * by setting the $wpdb global variable in wp-content/db.php 42 42 * file with your class. You can name it wpdb also, since 43 43 * this file will not be included, if the other file is … … 988 988 if ( ! isset($wpdb) ) { 989 989 /** 990 * WordPress Database Object, if it isn't set already in wp-content/ wpdb.php990 * WordPress Database Object, if it isn't set already in wp-content/db.php 991 991 * @global object $wpdb Creates a new wpdb object based on wp-config.php Constants for the database 992 992 * @since 0.71
