Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2010-10-16 03:42:58 +0400
committerRobin Appelman <icewind1991@gmail.com>2010-10-16 03:42:58 +0400
commita98dfbbf71336f4f0fbf4299c101239aaa65826b (patch)
tree230278a4053e35506018652d017f4266ca04d12f /inc/lib_filestorage.php
parent494d88a4353799ae2fbc2631578664715c063c7e (diff)
plugin manager and plugin installer
Diffstat (limited to 'inc/lib_filestorage.php')
-rw-r--r--inc/lib_filestorage.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/inc/lib_filestorage.php b/inc/lib_filestorage.php
index 3e53e266279..7dbdfe2457e 100644
--- a/inc/lib_filestorage.php
+++ b/inc/lib_filestorage.php
@@ -175,13 +175,8 @@ class OC_FILESTORAGE_LOCAL extends OC_FILESTORAGE{
}
$source=substr($path1,strrpos($path1,'/')+1);
$path2.=$source;
-// sleep(30);
- }else{
- error_log('isfile');
}
- error_log("copy $path1 to {$this->datadir}$path2");
if($return=copy($this->datadir.$path1,$this->datadir.$path2)){
- error_log('success');
$this->notifyObservers($path2,OC_FILEACTION_CREATE);
}
return $return;