Make WordPress Core

Changeset 628 for trunk/wp-settings.php


Ignore:
Timestamp:
12/18/2003 09:36:13 AM (21 years ago)
Author:
saxmatt
Message:

Renaming Reloaded.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r614 r628  
    2020
    2121// This is the name of the include directory. No "/" allowed.
    22 $b2inc = 'wp-includes';
     22define('WPINC', 'wp-includes');
    2323
    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');
     24require (ABSPATH . 'wp-config-extra.php');
     25require (ABSPATH . WPINC . '/wp-db.php');
     26require (ABSPATH . WPINC . '/functions.php');
     27require (ABSPATH . WPINC . '/template-functions.php');
     28require (ABSPATH . WPINC . '/class-xmlrpc.php');
     29require (ABSPATH . WPINC . '/class-xmlrpcs.php');
     30require (ABSPATH . '/wp-links/links.php');
    3131
    3232//setup the old globals from b2config.php
     
    9898} //end !$_wp_installing
    9999
    100 require ($abspath . $b2inc . '/vars.php');
     100require (ABSPATH . WPINC . '/vars.php');
    101101?>
Note: See TracChangeset for help on using the changeset viewer.