Changeset 628 for trunk/wp-settings.php
- Timestamp:
- 12/18/2003 09:36:13 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r614 r628 20 20 21 21 // This is the name of the include directory. No "/" allowed. 22 $b2inc = 'wp-includes';22 define('WPINC', 'wp-includes'); 23 23 24 require ( $abspath. 'wp-config-extra.php');25 require ( $abspath . $b2inc. '/wp-db.php');26 require ( $abspath . $b2inc. '/functions.php');27 require ( $abspath . $b2inc. '/template-functions.php');28 require ( $abspath . $b2inc. '/class-xmlrpc.php');29 require ( $abspath . $b2inc. '/class-xmlrpcs.php');30 require ( $abspath. '/wp-links/links.php');24 require (ABSPATH . 'wp-config-extra.php'); 25 require (ABSPATH . WPINC . '/wp-db.php'); 26 require (ABSPATH . WPINC . '/functions.php'); 27 require (ABSPATH . WPINC . '/template-functions.php'); 28 require (ABSPATH . WPINC . '/class-xmlrpc.php'); 29 require (ABSPATH . WPINC . '/class-xmlrpcs.php'); 30 require (ABSPATH . '/wp-links/links.php'); 31 31 32 32 //setup the old globals from b2config.php … … 98 98 } //end !$_wp_installing 99 99 100 require ( $abspath . $b2inc. '/vars.php');100 require (ABSPATH . WPINC . '/vars.php'); 101 101 ?>
Note: See TracChangeset
for help on using the changeset viewer.