aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/constants.php
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-03 23:25:07 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-03 23:25:07 +0000
commitdfeeae38a9feaa30f5dec50a09476c03f431a196 (patch)
tree6fe9c5a052c2d08b62a9e4dfc7832b4bdf95c9bd /src/SemanticScuttle/constants.php
parentde031f043f9918424b26534d233df90b7d5c42f9 (diff)
downloadsemanticscuttle-dfeeae38a9feaa30f5dec50a09476c03f431a196.tar.gz
semanticscuttle-dfeeae38a9feaa30f5dec50a09476c03f431a196.tar.bz2
get rid of headers-already-sent-errors when running unit tests on cli
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@390 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle/constants.php')
-rw-r--r--src/SemanticScuttle/constants.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/SemanticScuttle/constants.php b/src/SemanticScuttle/constants.php
index e37f41c..95c4384 100644
--- a/src/SemanticScuttle/constants.php
+++ b/src/SemanticScuttle/constants.php
@@ -11,10 +11,7 @@ if(isset($GLOBALS['debugMode'])) {
}
// Determine the base URL as ROOT
-if (!isset($_SERVER['HTTP_HOST'])) {
- //not set in unit tests
- define('ROOT', 'http://localhost/');
-} else if (!isset($GLOBALS['root'])) {
+if (!isset($GLOBALS['root'])) {
$pieces = explode('/', $_SERVER['SCRIPT_NAME']);
$rootTmp = '/';