diff options
author | Björn Schießle <schiessle@owncloud.com> | 2014-08-14 17:45:39 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2014-08-14 17:45:39 +0200 |
commit | 64c3fe670c84b286635bca10fff8383e223f2780 (patch) | |
tree | 1cda12512276064491f9fcb263e69ae42c62fdb6 | |
parent | a645da3640c47a1676429609ee3447d2c7368984 (diff) | |
parent | d9f35d8c151801c243efd1353457f74aba75d38a (diff) | |
download | nextcloud-server-64c3fe670c84b286635bca10fff8383e223f2780.tar.gz nextcloud-server-64c3fe670c84b286635bca10fff8383e223f2780.zip |
Merge pull request #10399 from owncloud/fix_setSendMailStatus
[sharing] fix mail notification
-rw-r--r-- | core/ajax/share.php | 4 | ||||
-rw-r--r-- | lib/private/share/share.php | 7 | ||||
-rw-r--r-- | lib/public/share.php | 5 |
3 files changed, 9 insertions, 7 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php index 37f374c4992..451c761c2cd 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -107,7 +107,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo $mailNotification = new OC\Share\MailNotifications(); $result = $mailNotification->sendInternalShareMail($recipientList, $itemSource, $itemType); - \OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, true); + \OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, $recipient, true); if (empty($result)) { OCP\JSON::success(); @@ -126,7 +126,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo $shareType = $_POST['shareType']; $itemType = $_POST['itemType']; $recipient = $_POST['recipient']; - \OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, false); + \OCP\Share::setSendMailStatus($itemType, $itemSource, $shareType, $recipient, false); OCP\JSON::success(); break; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 646511fd64d..4bf6622c561 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -820,17 +820,18 @@ class Share extends \OC\Share\Constants { * @param string $itemType * @param string $itemSource * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string $recipient with whom was the file shared * @param boolean $status */ - public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { + public static function setSendMailStatus($itemType, $itemSource, $shareType, $recipient, $status) { $status = $status ? 1 : 0; $query = \OC_DB::prepare( 'UPDATE `*PREFIX*share` SET `mail_send` = ? - WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); + WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); + $result = $query->execute(array($status, $itemType, $itemSource, $shareType, $recipient)); if($result === false) { \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); diff --git a/lib/public/share.php b/lib/public/share.php index e6519dd3e3a..bb9c6ec5886 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -274,10 +274,11 @@ class Share extends \OC\Share\Constants { * @param string $itemType * @param string $itemSource * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string $recipient with whom was the item shared * @param bool $status */ - public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { - return \OC\Share\Share::setSendMailStatus($itemType, $itemSource, $shareType, $status); + public static function setSendMailStatus($itemType, $itemSource, $shareType, $recipient, $status) { + return \OC\Share\Share::setSendMailStatus($itemType, $itemSource, $shareType, $recipient, $status); } /** |