Changeset 1658
- Timestamp:
- 08/26/08 20:15:03 (3 months ago)
- Files:
-
- branches/0.9/bb-settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.9/bb-settings.php
r1516 r1658 57 57 // Define the include path 58 58 define('BB_INC', 'bb-includes/'); 59 60 // Load the database class61 require( BB_PATH . BB_INC . 'db.php' );62 59 63 60 // Define the language file directory … … 84 81 require( BB_PATH . BB_INC . 'l10n.php'); 85 82 } 83 84 /** 85 * Define the full path to the database class 86 */ 87 if ( !defined('BB_DATABASE_CLASS_INCLUDE') ) 88 define('BB_DATABASE_CLASS_INCLUDE', BB_INC . 'db.php' ); 89 90 // Load the database class 91 if ( BB_DATABASE_CLASS_INCLUDE ) 92 require( BB_DATABASE_CLASS_INCLUDE ); 86 93 87 94 if ( is_wp_error( $bbdb->set_prefix( $bb_table_prefix ) ) )