summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-03-01 20:56:51 +0100
committerBart Visscher <bartv@thisnet.nl>2012-03-01 21:00:23 +0100
commit5dcd9e20d03f089408ada52e3ea5462c88bf191a (patch)
treee71703b7856eb6d81bb73361d32a5629c92c687b /lib/base.php
parentec2f49833da5c1fdb54d63c4ec05b7309c4e3c68 (diff)
downloadnextcloud-server-5dcd9e20d03f089408ada52e3ea5462c88bf191a.tar.gz
nextcloud-server-5dcd9e20d03f089408ada52e3ea5462c88bf191a.zip
Small cleanups
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 5a4904c50f2..0df6631df4d 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -213,7 +213,15 @@ class OC{
}
// set the right include path
- set_include_path(OC::$SERVERROOT.'/lib'.PATH_SEPARATOR.OC::$SERVERROOT.'/config'.PATH_SEPARATOR.OC::$THIRDPARTYROOT.'/3rdparty'.PATH_SEPARATOR.OC::$APPSROOT.PATH_SEPARATOR.OC::$APPSROOT.'/apps'.PATH_SEPARATOR.get_include_path().PATH_SEPARATOR.OC::$SERVERROOT);
+ set_include_path(
+ OC::$SERVERROOT.'/lib'.PATH_SEPARATOR.
+ OC::$SERVERROOT.'/config'.PATH_SEPARATOR.
+ OC::$THIRDPARTYROOT.'/3rdparty'.PATH_SEPARATOR.
+ OC::$APPSROOT.PATH_SEPARATOR.
+ OC::$APPSROOT.'/apps'.PATH_SEPARATOR.
+ get_include_path().PATH_SEPARATOR.
+ OC::$SERVERROOT
+ );
// Redirect to installer if not installed
if (!OC_Config::getValue('installed', false) && OC::$SUBURI != '/index.php') {