In campaignmonitor.class.php on line 91:
$msg = t('Failed with code: @code and message: $msg', array('@code' => $code, '@msg' => $message));

Should be:
$msg = t('Failed with code: @code and message: @msg', array('@code' => $code, '@msg' => $message));

CommentFileSizeAuthor
type_fix.patch570 byteswjzijderveld

Comments

cableman0408’s picture

Assigned: Unassigned » cableman0408
Status: Active » Closed (fixed)

The patch have been applied to the 7.x development branch and will be part of the next release. Thanks for the patch.