diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index 87635a10b13117b12cd0d523cc2d736cdd8d125b..0d827da28eab18d8ad98a414bb9cf2899bd761f8 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -73,7 +73,7 @@ if (version_compare($installedVersion, '0.3', '<')) { if (version_compare($installedVersion, '0.3.5', '<')) { // get all shares where the original file no longer exists - $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (`file`, `folder`)'); + $findShares = \OC_DB::prepare('SELECT `file_source` FROM `*PREFIX*share` LEFT JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid` WHERE `*PREFIX*filecache`.`fileid` IS NULL AND `*PREFIX*share`.`item_type` IN (\'file\', \'folder\')'); $sharesFound = $findShares->execute(array())->fetchAll(); // delete those shares from the oc_share table