Changeset 482 for trunk/bb-settings.php
- Timestamp:
- 10/16/2006 06:26:02 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/bb-settings.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-settings.php
r470 r482 66 66 require( BBPATH . BBINC . '/deprecated.php'); 67 67 require( BBPATH . BBINC . '/wp-functions.php'); 68 if ( defined('BBLANG') && '' != constant('BBLANG') ) { 69 include_once(BBPATH . BBINC . '/streams.php'); 70 include_once(BBPATH . BBINC . '/gettext.php'); 71 } 68 72 if ( !( defined('WP_BB') && WP_BB ) ) { // Don't include these when WP is running. 69 73 require( BBPATH . BBINC . '/kses.php'); 70 if ( defined('WPLANG') && '' != constant('WPLANG') ) {71 include_once(BBPATH . BBINC . '/streams.php');72 include_once(BBPATH . BBINC . '/gettext.php');73 }74 74 require( BBPATH . BBINC . '/l10n.php'); 75 75 } … … 129 129 $bb_cache = new BB_Cache(); 130 130 131 $bb_roles = new BB_Roles(); 131 // Load the default text localization domain. 132 load_default_textdomain(); 133 134 // Pull in locale data after loading text domain. 135 require_once(BBPATH . BBINC . '/locale.php'); 136 $bb_locale = new BB_Locale(); 137 138 $bb_roles = new BB_Roles(); 132 139 do_action('bb_got_roles', ''); 133 140
Note: See TracChangeset
for help on using the changeset viewer.