summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorSusinthiran Sithamparanathan <chesusin@gmail.com>2012-10-17 12:25:34 +0200
committerSusinthiran Sithamparanathan <chesusin@gmail.com>2012-10-17 16:17:36 +0200
commitb2b84f3a6f3c98005f80c6c7c558a33b4ea36193 (patch)
tree1ae0c571e25ab7322e9a942dfdcc593f67e98ad6 /lib/base.php
parent45dec77d92c9a7804489bee34b218bbe8c85f7c5 (diff)
downloadnextcloud-server-b2b84f3a6f3c98005f80c6c7c558a33b4ea36193.tar.gz
nextcloud-server-b2b84f3a6f3c98005f80c6c7c558a33b4ea36193.zip
Update Sabre to version 1.7.1
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php
index a1ad4f6dc0a..bd8829e1ab6 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -93,6 +93,11 @@ class OC{
elseif(strpos($className, 'Sabre_')===0) {
$path = str_replace('_', '/', $className) . '.php';
}
+
+ elseif(strpos($className, 'Sabre\\VObject')===0) {
+ $path = '3rdparty/'.str_replace('\\', '/', $className) . '.php';
+ }
+
elseif(strpos($className, 'Test_')===0) {
$path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php');
}else{