]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix include path
authorFrank Karlitschek <karlitschek@kde.org>
Sun, 7 Aug 2011 15:39:38 +0000 (17:39 +0200)
committerFrank Karlitschek <karlitschek@kde.org>
Sun, 7 Aug 2011 15:39:38 +0000 (17:39 +0200)
lib/base.php

index 270e8c20c7596938417c0220f787136bcce803e7..51dee60d67276be60a5025b600c56f6afb7485f9 100644 (file)
@@ -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');