diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-04-27 15:18:13 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-04-27 15:18:25 +0200 |
commit | 5304afbecb37b841312e35594ef8cba403a4cd8c (patch) | |
tree | 438040d0e52f1bec51de1624555bdbe4e9b65474 /apps/files_sharing/lib | |
parent | 0789a6433e5b25b5edc3434b2650a067367b9130 (diff) | |
download | nextcloud-server-5304afbecb37b841312e35594ef8cba403a4cd8c.tar.gz nextcloud-server-5304afbecb37b841312e35594ef8cba403a4cd8c.zip |
dont pass floats as timestamp to the changepropagator
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r-- | apps/files_sharing/lib/propagation/recipientpropagator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/propagation/recipientpropagator.php b/apps/files_sharing/lib/propagation/recipientpropagator.php index 9c9fe2bedbf..5b7651f2ce7 100644 --- a/apps/files_sharing/lib/propagation/recipientpropagator.php +++ b/apps/files_sharing/lib/propagation/recipientpropagator.php @@ -60,7 +60,7 @@ class RecipientPropagator { } if (count($dirtyShares)) { $this->config->setUserValue($this->userId, 'files_sharing', 'last_propagate', $time); - $this->changePropagator->propagateChanges($time); + $this->changePropagator->propagateChanges(floor($time)); } } |