Skip to content

Commit

Permalink
fixes #39633, typo to cause syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jimyhuang committed Mar 25, 2024
1 parent 60c433f commit d613328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CRM/Mailing/External/SmartMarketing/Flydove.php
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ public static function formatResult($meta) {
if (!empty($meta['#count']['skipped']) && !empty($skippedText)) {
$report['skipped'] = ts('Flydove').': '.ts('Skipped %1 contacts due to reasons: %2.', array(
1 => $meta['#count']['skipped'],
2 => implode(' / ', $skippedText)),
);
2 => implode(' / ', $skippedText),
));
}
return $report;
}
Expand Down

0 comments on commit d613328

Please sign in to comment.