summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-10-06 13:00:17 +0200
committerRobin Appelman <icewind@owncloud.com>2015-10-06 13:00:30 +0200
commit47c71d8e8771cab6d5442e790f3edb94213b586e (patch)
treec1a3b6dcdcdb2188714c6f4f1f8cc2c2713bd576 /apps/files_sharing/lib
parent41f9946272e4c41e96bd0918ff1b2adfd113b92a (diff)
downloadnextcloud-server-47c71d8e8771cab6d5442e790f3edb94213b586e.tar.gz
nextcloud-server-47c71d8e8771cab6d5442e790f3edb94213b586e.zip
use microtime
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/propagation/changewatcher.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/propagation/changewatcher.php b/apps/files_sharing/lib/propagation/changewatcher.php
index f9b28c7f967..e61c161da19 100644
--- a/apps/files_sharing/lib/propagation/changewatcher.php
+++ b/apps/files_sharing/lib/propagation/changewatcher.php
@@ -104,7 +104,7 @@ class ChangeWatcher {
$share = $params['share'];
if ($share['item_type'] === 'file' || $share['item_type'] === 'folder') {
- $this->recipientPropagator->markDirty($share, time());
+ $this->recipientPropagator->markDirty($share, microtime(true));
}
}
}