Changeset 1190 for trunk/wp-settings.php
- Timestamp:
- 04/27/2004 11:17:16 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r1184 r1190 25 25 $tableoptiongroup_options = $table_prefix . 'optiongroup_options'; 26 26 $tablepostmeta = $table_prefix . 'postmeta'; 27 27 28 define('WPINC', 'wp-includes'); 29 28 30 require_once (ABSPATH . WPINC . '/wp-db.php'); 29 31 … … 35 37 $wpdb->show_errors(); 36 38 37 // This is the name of the include directory. No "/" allowed. 38 39 require_once (ABSPATH . WPINC . '/functions.php'); 40 require_once (ABSPATH . 'wp-config-extra.php'); 41 require_once (ABSPATH . WPINC . '/template-functions.php'); 42 require_once (ABSPATH . WPINC . '/class-xmlrpc.php'); 43 require_once (ABSPATH . WPINC . '/class-xmlrpcs.php'); 44 require_once (ABSPATH . WPINC . '/links.php'); 45 require_once (ABSPATH . WPINC . '/kses.php'); 39 require (ABSPATH . WPINC . '/functions.php'); 40 require (ABSPATH . 'wp-config-extra.php'); 41 require (ABSPATH . WPINC . '/template-functions.php'); 42 require (ABSPATH . WPINC . '/links.php'); 43 require (ABSPATH . WPINC . '/kses.php'); 46 44 require_once (ABSPATH . WPINC . '/wp-l10n.php'); 47 45 48 //setup the old globals from b2config.php49 //50 // We should eventually migrate to either calling51 // get_settings() wherever these are needed OR52 // accessing a single global $all_settings var53 46 if (!strstr($_SERVER['REQUEST_URI'], 'install.php') && !strstr($_SERVER['REQUEST_URI'], 'wp-admin/import')) { 54 47 … … 62 55 } //end !$_wp_installing 63 56 64 require _once(ABSPATH . WPINC . '/vars.php');57 require (ABSPATH . WPINC . '/vars.php'); 65 58 66 59
Note: See TracChangeset
for help on using the changeset viewer.