Don't double define ABSPATH. Props peaceablewhale. fixes #9863

git-svn-id: https://develop.svn.wordpress.org/trunk@11393 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-05-19 15:29:57 +00:00
parent 1f9c258540
commit 0b914e524c
1 changed files with 1 additions and 6 deletions

View File

@ -14,13 +14,8 @@
*/
define('WP_INSTALLING', true);
/**
* This constant is used to include wp-load.php
*/
define('ABSPATH', dirname(dirname(__FILE__)).'/');
/** Load WordPress Bootstrap */
require_once(ABSPATH . 'wp-load.php');
require_once(dirname(dirname(__FILE__)) . '/wp-load.php');
/** Load WordPress Administration Upgrade API */
require_once(dirname(__FILE__) . '/includes/upgrade.php');