Skip to content

Commit

Permalink
fix(rule engine): warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
Rom1-B authored and trasher committed Apr 8, 2024
1 parent dd82f09 commit 595f959
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/RuleMailCollectorCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@ public function getTitle()
public function prepareInputDataForProcess($input, $params)
{

$input['mailcollector'] = $params['mailcollector'];
$input['_users_id_requester'] = $params['_users_id_requester'];
if (isset($params['mailcollector'])) {
$input['mailcollector'] = $params['mailcollector'];
}
if (isset($params['_users_id_requester'])) {
$input['_users_id_requester'] = $params['_users_id_requester'];
}

$fields = $this->getFieldsToLookFor();

Expand Down

0 comments on commit 595f959

Please sign in to comment.