diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-06-22 15:13:10 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-06-23 16:44:51 +0200 |
commit | d1f94e84d6f9329b2e7daa38917c4babef8ade4d (patch) | |
tree | f2e5ef24877dece61bf3cd4e28dcc7430a55d0e6 /apps | |
parent | a2a23a68ee29a507ea95b279d14822b7c1a8f456 (diff) | |
download | nextcloud-server-d1f94e84d6f9329b2e7daa38917c4babef8ade4d.tar.gz nextcloud-server-d1f94e84d6f9329b2e7daa38917c4babef8ade4d.zip |
use string array when fetching share ids
Diffstat (limited to 'apps')
-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 86c22a93628..994af049764 100644 --- a/apps/files_sharing/lib/propagation/recipientpropagator.php +++ b/apps/files_sharing/lib/propagation/recipientpropagator.php @@ -144,7 +144,7 @@ class RecipientPropagator { ->setParameter('appid', 'files_sharing', \PDO::PARAM_STR); foreach ($shareIdChunks as $shareIds) { - $sql->setParameter('shareids', $shareIds, Connection::PARAM_INT_ARRAY); + $sql->setParameter('shareids', $shareIds, Connection::PARAM_STR_ARRAY); $result = $sql->execute(); while ($row = $result->fetch()) { |