Update includes in import files, fixes #1427

git-svn-id: https://develop.svn.wordpress.org/trunk@2687 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg
2005-07-02 23:39:29 +00:00
parent 08ab1b910a
commit 60ce1eb0d9
7 changed files with 9 additions and 9 deletions

View File

@@ -8,8 +8,8 @@ $tp_database_password = 'password';
$tp_database_host = 'localhost';
if (!file_exists('../wp-config.php')) die("There doesn't seem to be a wp-config.php file. Double check that you updated wp-config-sample.php with the proper database connection information and renamed it to wp-config.php.");
require('../wp-config.php');
require('upgrade-functions.php');
require_once('../wp-config.php');
require_once('upgrade-functions.php');
$step = $_GET['step'];
if (!$step) $step = 0;