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
path: root/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2012-03-12 20:21:39 +0400
committerArthur Schiwon <blizzz@owncloud.com>2012-03-12 20:21:39 +0400
commit01dfc2e83622762654c9f45525b983db22a79434 (patch)
tree803a827997bd8015bd8878963017a0beacea6561 /lib
parentcc07d9fd9c107038177a72a6ab8fb0c5cff41a6c (diff)
forgot to resolve conflict resulting from cherry picking 71e71b75eeb7ac0719df149ecb2b34d3312b2490
Diffstat (limited to 'lib')
-rw-r--r--lib/filestorage/local.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php
index 3c96ff64f37..a94098bb7c1 100644
--- a/lib/filestorage/local.php
+++ b/lib/filestorage/local.php
@@ -67,11 +67,9 @@ class OC_Filestorage_Local extends OC_Filestorage{
public function filemtime($path){
return filemtime($this->datadir.$path);
}
-<<<<<<< HEAD
public function fileatime($path){
return fileatime($this->datadir.$path);
}
-=======
public function setFileMtime($path, $mtime){
// sets the modification time of the file to the given value. If mtime is nil the current time is set.
@@ -79,7 +77,6 @@ class OC_Filestorage_Local extends OC_Filestorage{
return touch($this->datadir.$path, $mtime);
}
->>>>>>> 85853f9... - Added the ability to change a files mtime via webdavs propset.
public function file_get_contents($path){
return file_get_contents($this->datadir.$path);
}