[Pkg-owncloud-commits] [owncloud] 113/215: dont pass floats as timestamp to the changepropagator
David Prévot
taffit at moszumanska.debian.org
Tue May 5 01:01:32 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 5304afbecb37b841312e35594ef8cba403a4cd8c
Author: Robin Appelman <icewind at owncloud.com>
Date: Mon Apr 27 15:18:13 2015 +0200
dont pass floats as timestamp to the changepropagator
---
apps/files_sharing/lib/propagation/recipientpropagator.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/files_sharing/lib/propagation/recipientpropagator.php b/apps/files_sharing/lib/propagation/recipientpropagator.php
index 9c9fe2b..5b7651f 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));
}
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list