summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFrank Karlitschek <karlitschek@kde.org>2011-08-07 17:39:38 +0200
committerFrank Karlitschek <karlitschek@kde.org>2011-08-07 17:39:38 +0200
commitb2702c44061d73ef80b8e26d85f0921c170c3921 (patch)
treeaf5d98d1d7855fc404ca077c63460a1f4ffe8223 /lib
parentf5a030f4ae5298c2b3325a27e8d05153f0488ea0 (diff)
downloadnextcloud-server-b2702c44061d73ef80b8e26d85f0921c170c3921.tar.gz
nextcloud-server-b2702c44061d73ef80b8e26d85f0921c170c3921.zip
fix include path
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 270e8c20c75..51dee60d672 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -97,7 +97,7 @@ if($WEBROOT!='' and $WEBROOT[0]!=='/'){
}
// set the right include path
-set_include_path($SERVERROOT.'/lib'.PATH_SEPARATOR.$SERVERROOT.'/config'.PATH_SEPARATOR.$SERVERROOT.'/3dparty'.PATH_SEPARATOR.get_include_path().PATH_SEPARATOR.$SERVERROOT);
+set_include_path($SERVERROOT.'/lib'.PATH_SEPARATOR.$SERVERROOT.'/config'.PATH_SEPARATOR.$SERVERROOT.'/3rdparty'.PATH_SEPARATOR.get_include_path().PATH_SEPARATOR.$SERVERROOT);
//Some libs we really depend on
require_once('Sabre/autoload.php');