summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-20 20:22:25 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-20 20:22:25 +0000
commita3bb66e4e81817737ce02ce8f3d0cff5c32fdae9 (patch)
treee31979e262ad7731f7355c494ac722d474e74080 /scripts
parent9c2e5a52c9762dacb97789226c2ee4065d1e18e9 (diff)
downloadbrdo-a3bb66e4e81817737ce02ce8f3d0cff5c32fdae9.tar.gz
brdo-a3bb66e4e81817737ce02ce8f3d0cff5c32fdae9.tar.bz2
#259623 by dopry and Damien Tournoud: Convert includes/requires to use absolute paths.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/password-hash.sh6
-rwxr-xr-xscripts/run-tests.sh3
2 files changed, 6 insertions, 3 deletions
diff --git a/scripts/password-hash.sh b/scripts/password-hash.sh
index 89893d102..74f84d264 100755
--- a/scripts/password-hash.sh
+++ b/scripts/password-hash.sh
@@ -83,8 +83,10 @@ while ($param = array_shift($_SERVER['argv'])) {
}
}
-include_once('includes/password.inc');
-include_once('includes/common.inc');
+define('DRUPAL_ROOT', getcwd());
+
+include_once DRUPAL_ROOT . '/includes/password.inc';
+include_once DRUPAL_ROOT . '/includes/common.inc';
foreach ($passwords as $password) {
print("\npassword: $password \t\thash: ". user_hash_password($password) ."\n");
diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh
index af57336db..19527e44a 100755
--- a/scripts/run-tests.sh
+++ b/scripts/run-tests.sh
@@ -245,7 +245,8 @@ function simpletest_script_init() {
$_SERVER['HTTP_USER_AGENT'] = 'Drupal command line';
chdir(realpath(dirname(__FILE__) . '/..'));
- require_once './includes/bootstrap.inc';
+ define('DRUPAL_ROOT', getcwd());
+ require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
}
/**