diff options
author | Robin Appelman <robin@icewind.nl> | 2017-04-10 17:59:40 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-04-10 17:59:40 +0200 |
commit | a555672f2106e7365e0c5351bbd60e7afc161d80 (patch) | |
tree | b6487f24e0a8f223d60ac2a2b44bad8fa515303a /apps/sharebymail/lib | |
parent | 18580395d4095842462e035a2d947e716413d2fd (diff) | |
download | nextcloud-server-a555672f2106e7365e0c5351bbd60e7afc161d80.tar.gz nextcloud-server-a555672f2106e7365e0c5351bbd60e7afc161d80.zip |
properly quota table names in getSharesInFolder
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/sharebymail/lib')
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index 332f1c0cf74..ec9568b734e 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -839,7 +839,7 @@ class ShareByMailProvider implements IShareProvider { ); } - $qb->innerJoin('s', 'filecache' ,'f', 's.file_source = f.fileid'); + $qb->innerJoin('s', 'filecache' ,'f', $qb->expr()->eq('s.file_source', 'f.fileid')); $qb->andWhere($qb->expr()->eq('f.parent', $qb->createNamedParameter($node->getId()))); $qb->orderBy('id'); |