summaryrefslogtreecommitdiffstats
path: root/lib/HTTP
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-04-17 13:02:36 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-04-17 13:33:30 +0200
commit6affa3281a4965d233783a26935bc842633d30dd (patch)
tree012fa55d809f3af4f6ee36bdf47c436b2b828bac /lib/HTTP
parentafa2c4a2c31c6cb293981cdb25f264fe96fb3b98 (diff)
downloadnextcloud-server-6affa3281a4965d233783a26935bc842633d30dd.tar.gz
nextcloud-server-6affa3281a4965d233783a26935bc842633d30dd.zip
small fixes in webdav
Diffstat (limited to 'lib/HTTP')
-rw-r--r--lib/HTTP/WebDAV/Server/Filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/HTTP/WebDAV/Server/Filesystem.php b/lib/HTTP/WebDAV/Server/Filesystem.php
index 1c1dbdb5fb7..49b2397175a 100644
--- a/lib/HTTP/WebDAV/Server/Filesystem.php
+++ b/lib/HTTP/WebDAV/Server/Filesystem.php
@@ -410,7 +410,7 @@
OC_FILESYSTEM::unlink($path);
}
$query = OC_DB::prepare("DELETE FROM *PREFIX*properties WHERE path = ?");
- $query->execute(array($options[path]));
+ $query->execute(array($options['path']));
return "204 No Content";
}