|
@@ -23,7 +23,7 @@ discard block |
|
|
block discarded – undo |
|
23
|
23
|
|
|
24
|
24
|
$mailSubject = $this->getNotificationSubject($status); |
|
25
|
25
|
$mailBody = $this->getNotificationBody($draft, $status, $mailSubject); |
|
26
|
|
- $mailSubject .= ' (' . $draft->getSection()->name . ' - ' . $draft->title . ')'; |
|
|
26
|
+ $mailSubject .= ' ('.$draft->getSection()->name.' - '.$draft->title.')'; |
|
27
|
27
|
|
|
28
|
28
|
$email = new EmailModel(); |
|
29
|
29
|
$email->replyTo = craft()->userSession->getUser()->email; |
|
@@ -103,7 +103,7 @@ discard block |
|
|
block discarded – undo |
|
103
|
103
|
/** @var ElementCriteriaModel $userCriteria */ |
|
104
|
104
|
$userCriteria = craft()->elements->getCriteria('User'); |
|
105
|
105
|
$userCriteria->group = $userGroupHandles; |
|
106
|
|
- $userCriteria->id = 'not ' . craft()->userSession->getUser()->id; |
|
|
106
|
+ $userCriteria->id = 'not '.craft()->userSession->getUser()->id; |
|
107
|
107
|
return $userCriteria->find(); |
|
108
|
108
|
} |
|
109
|
109
|
} |
Please login to merge, or discard this patch.