summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-06-15 22:35:09 +0200
committerBart Visscher <bartv@thisnet.nl>2012-06-16 00:11:36 +0200
commit6d3ae575b6ed9934e37a884ea152008a29cbfc7b (patch)
tree06d14990178b1589f41424c80f031a4b7c2eacaa /lib/base.php
parent03951ccc6b4d710e2e21d4344842a7c310453871 (diff)
downloadnextcloud-server-6d3ae575b6ed9934e37a884ea152008a29cbfc7b.tar.gz
nextcloud-server-6d3ae575b6ed9934e37a884ea152008a29cbfc7b.zip
Remove $DOCUMENTROOT, not used
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/base.php b/lib/base.php
index f85710ddfcf..fedc1238851 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -121,8 +121,7 @@ class OC{
}
public static function initPaths(){
- // calculate the documentroot
- $DOCUMENTROOT=realpath($_SERVER['DOCUMENT_ROOT']);
+ // calculate the root directories
OC::$SERVERROOT=str_replace("\\",'/',substr(__FILE__,0,-13));
OC::$SUBURI= str_replace("\\","/",substr(realpath($_SERVER["SCRIPT_FILENAME"]),strlen(OC::$SERVERROOT)));
$scriptName=$_SERVER["SCRIPT_NAME"];
@@ -137,9 +136,6 @@ class OC{
}
}
OC::$WEBROOT=substr($scriptName,0,strlen($scriptName)-strlen(OC::$SUBURI));
- // try a new way to detect the WEBROOT which is simpler and also works with the app directory outside the owncloud folder. let´s see if this works for everybody
-// OC::$WEBROOT=substr(OC::$SERVERROOT,strlen($DOCUMENTROOT));
-
if(OC::$WEBROOT!='' and OC::$WEBROOT[0]!=='/'){
OC::$WEBROOT='/'.OC::$WEBROOT;