You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe i had a support ticket with dotmailer previously about this issue.
Just pulled the latest release from the repo.
app/code/community/Dotdigitalgroup/Email/Model/Connector/Order.php
Line 536 $value = implode($value, ', ');
That line should be $value = implode(',',$value);
I came across this while reviewing the latest release 6.4.11.
The text was updated successfully, but these errors were encountered:
I believe i had a support ticket with dotmailer previously about this issue.
Just pulled the latest release from the repo.
app/code/community/Dotdigitalgroup/Email/Model/Connector/Order.php
Line 536 $value = implode($value, ', ');
That line should be
$value = implode(',',$value);
I came across this while reviewing the latest release 6.4.11.
The text was updated successfully, but these errors were encountered: