Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2014-08-13 19:02:51 +0400
committerBjoern Schiessle <schiessle@owncloud.com>2014-08-14 19:45:18 +0400
commit4c6c22c4e3c5dd6dbb524548ce8b1e97fc7bcc7f (patch)
treed181b34c6b3c3d917079eb5ff1537d55878c70ce /lib/public
parent35c133143a84a05dc690ef3ce88a1e9c90590c32 (diff)
we need the recipient as a additional parameter to know for which share the notification was send
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/share.php5
1 files changed, 3 insertions, 2 deletions
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);
}
/**