Skip to content

Commit

Permalink
CRM-21054 - Fix is_create_activities param for fetch_activities job (#…
Browse files Browse the repository at this point in the history
…10846)

* Fix is_create_activities param for fetch_activities

* set create activity to always be true
  • Loading branch information
Jitendra Purohit authored and eileenmcnaughton committed Aug 12, 2017
1 parent a1c16b9 commit 2c2409c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/Mail/EmailProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static function processActivities() {
$found = FALSE;
while ($dao->fetch()) {
$found = TRUE;
self::_process(FALSE, $dao, $is_create_activities);
self::_process(FALSE, $dao, TRUE);
}
if (!$found) {
CRM_Core_Error::fatal(ts('No mailboxes have been configured for Email to Activity Processing'));
Expand Down

0 comments on commit 2c2409c

Please sign in to comment.