summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin <robin@Amaya.(none)>2010-05-02 16:21:30 +0200
committerRobin <robin@Amaya.(none)>2010-05-02 16:21:30 +0200
commit9ddd0e34ac64fd43a180684d13350d4250bb0f50 (patch)
tree4bbb814edccc8d5094d9e6b6be4897627e413c4d
parent5a500a2455c6dde0cb61e3b35eb3f6a0b1409f4b (diff)
downloadnextcloud-server-9ddd0e34ac64fd43a180684d13350d4250bb0f50.tar.gz
nextcloud-server-9ddd0e34ac64fd43a180684d13350d4250bb0f50.zip
fix bug in webdav
-rwxr-xr-xinc/HTTP/WebDAV/Server/Filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/HTTP/WebDAV/Server/Filesystem.php b/inc/HTTP/WebDAV/Server/Filesystem.php
index 35c9f362a54..013be1c4efc 100755
--- a/inc/HTTP/WebDAV/Server/Filesystem.php
+++ b/inc/HTTP/WebDAV/Server/Filesystem.php
@@ -728,7 +728,7 @@
$query = "SELECT owner, exclusivelock FROM locks $where";
$res = OC_DB::query($query);
$row = OC_DB::fetch_assoc($res);
- OC_DB:free_result($res);
+ OC_DB::free_result($res);
if (is_array($row)) {
$query = "UPDATE locks SET expires = '$options[timeout]', modified = ".time()." $where";