diff options
Diffstat (limited to '3rdparty/Sabre/DAV/Server.php')
-rw-r--r-- | 3rdparty/Sabre/DAV/Server.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3rdparty/Sabre/DAV/Server.php b/3rdparty/Sabre/DAV/Server.php index e5e9e482fee..c6c63143d13 100644 --- a/3rdparty/Sabre/DAV/Server.php +++ b/3rdparty/Sabre/DAV/Server.php @@ -1397,6 +1397,18 @@ class Sabre_DAV_Server { } /** + * This method is invoked by sub-systems creating a new directory. + * + * @param string $uri + * @return void + */ + public function createDirectory($uri) { + + $this->createCollection($uri,array('{DAV:}collection'),array()); + + } + + /** * Use this method to create a new collection * * The {DAV:}resourcetype is specified using the resourceType array. |