diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 13:02:36 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-04-17 13:33:30 +0200 |
commit | 6affa3281a4965d233783a26935bc842633d30dd (patch) | |
tree | 012fa55d809f3af4f6ee36bdf47c436b2b828bac /lib/HTTP | |
parent | afa2c4a2c31c6cb293981cdb25f264fe96fb3b98 (diff) | |
download | nextcloud-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.php | 2 |
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"; } |