Renaming Reloaded.

git-svn-id: http://svn.automattic.com/wordpress/trunk@628 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2003-12-18 09:36:13 +00:00
parent 298b53cc1e
commit 99a7358baf
42 changed files with 259 additions and 430 deletions

View File

@@ -19,15 +19,15 @@ $tableoptiongroups = $table_prefix . 'optiongroups';
$tableoptiongroup_options = $table_prefix . 'optiongroup_options';
// This is the name of the include directory. No "/" allowed.
$b2inc = 'wp-includes';
define('WPINC', 'wp-includes');
require ($abspath . 'wp-config-extra.php');
require ($abspath . $b2inc . '/wp-db.php');
require ($abspath . $b2inc . '/functions.php');
require ($abspath . $b2inc . '/template-functions.php');
require ($abspath . $b2inc . '/class-xmlrpc.php');
require ($abspath . $b2inc . '/class-xmlrpcs.php');
require ($abspath . '/wp-links/links.php');
require (ABSPATH . 'wp-config-extra.php');
require (ABSPATH . WPINC . '/wp-db.php');
require (ABSPATH . WPINC . '/functions.php');
require (ABSPATH . WPINC . '/template-functions.php');
require (ABSPATH . WPINC . '/class-xmlrpc.php');
require (ABSPATH . WPINC . '/class-xmlrpcs.php');
require (ABSPATH . '/wp-links/links.php');
//setup the old globals from b2config.php
//
@@ -97,5 +97,5 @@ if (!isset($_wp_installing) || !$_wp_installing) {
} //end !$_wp_installing
require ($abspath . $b2inc . '/vars.php');
require (ABSPATH . WPINC . '/vars.php');
?>