aboutsummaryrefslogtreecommitdiffstats
path: root/inc/HTTP
diff options
context:
space:
mode:
authorRobin <robin@Amaya.(none)>2010-05-22 22:23:17 +0200
committerRobin <robin@Amaya.(none)>2010-05-22 22:23:17 +0200
commit78ce03491e0045eaedd7b80b694520f63ba96474 (patch)
tree00f129b4c4fde7c07aea92276c18cdb74d5ffbd0 /inc/HTTP
parentd909f91d07deae7e5e438496dee82075dae24cdb (diff)
parent65ce4873278105eb4c1fec3f05422bfd37f41572 (diff)
downloadnextcloud-server-78ce03491e0045eaedd7b80b694520f63ba96474.tar.gz
nextcloud-server-78ce03491e0045eaedd7b80b694520f63ba96474.zip
merge
Diffstat (limited to 'inc/HTTP')
-rwxr-xr-xinc/HTTP/WebDAV/Server/Filesystem.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/inc/HTTP/WebDAV/Server/Filesystem.php b/inc/HTTP/WebDAV/Server/Filesystem.php
index 66d040ba0e2..2ad0041cc53 100755
--- a/inc/HTTP/WebDAV/Server/Filesystem.php
+++ b/inc/HTTP/WebDAV/Server/Filesystem.php
@@ -244,8 +244,6 @@
function _mimetype($fspath)
{
return OC_FILESYSTEM::getMimeType($fspath);
-
- return $mime_type;
}
/**
@@ -447,7 +445,6 @@
if (OC_FILESYSTEM::is_dir($path)) {
$query = "DELETE FROM properties WHERE path LIKE '".$this->_slashify($options["path"])."%'";
OC_DB::query($query);
-// System::rm(array("-rf, $path"));
OC_FILESYSTEM::delTree($path);
} else {
OC_FILESYSTEM::unlink($path);
@@ -744,19 +741,6 @@
return $result;
}
-
-
- /**
- * create database tables for property and lock storage
- *
- * @param void
- * @return bool true on success
- */
- function create_database()
- {
- // TODO
- return false;
- }
}
?>