Skip to content

Fix for bug preventing carts from synchronising #1029

@TroyPatteson

Description

@TroyPatteson

Carts no longer synchronise due to a bug introduced in commit dcee0f1. The issue is in the _processCartLines() method of app/code/community/Ebizmarts/MailChimp/Model/Api/Carts.php as shown below:

        return array('lines' => $lines, $count = $itemCount);

The fix is simply:

        return array('lines' => $lines, 'count' => $itemCount);

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions