diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-03-14 17:40:42 +0100 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2017-03-14 17:40:42 +0100 |
commit | 8f92808cafcad902651b0ecc86ff89fddbe6a251 (patch) | |
tree | f1db177311bcbc4a95830406e97dbfa951802f14 /lib/private/Share/Share.php | |
parent | 8d91c84ec4f60b382729ac0bc8c9ed08a4157236 (diff) | |
download | nextcloud-server-8f92808cafcad902651b0ecc86ff89fddbe6a251.tar.gz nextcloud-server-8f92808cafcad902651b0ecc86ff89fddbe6a251.zip |
take share by mail into consideration if we calculate the access list
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib/private/Share/Share.php')
-rw-r--r-- | lib/private/Share/Share.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Share/Share.php b/lib/private/Share/Share.php index da4b7dda91c..8aea6049de5 100644 --- a/lib/private/Share/Share.php +++ b/lib/private/Share/Share.php @@ -269,10 +269,10 @@ class Share extends Constants { $query = \OC_DB::prepare(' SELECT `share_with` FROM `*PREFIX*share` - WHERE `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')', 1 + WHERE `item_source` = ? AND `share_type` IN (?, ?) AND `item_type` IN (\'file\', \'folder\')', 1 ); - $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); + $result = $query->execute(array($source, self::SHARE_TYPE_LINK, self::SHARE_TYPE_EMAIL)); if (\OCP\DB::isError($result)) { \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage(), \OCP\Util::ERROR); @@ -2881,7 +2881,7 @@ class Share extends Constants { /** * @param IConfig $config - * @return bool + * @return bool */ public static function enforcePassword(IConfig $config) { $enforcePassword = $config->getAppValue('core', 'shareapi_enforce_links_password', 'no'); |