Skip to content

Commit

Permalink
[bug-OpenMage#729] Var typo in Mage_Customer_Model_Convert_Parser_Cus…
Browse files Browse the repository at this point in the history
…tomer::parse()

$shippingAddress is not defined
  • Loading branch information
sreichel authored and edannenberg committed Aug 17, 2020
1 parent b7ec071 commit 69df9eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ public function parse()
if ($customer->getDefaultBilling()) {
$model->setDefaultBilling($customer->getDefaultBilling());
} else {
$shippingAddress->save();
$billingAddress->save();
$model->setDefaultShipping($billingAddress->getId());
$model->addAddress($billingAddress);

Expand Down

0 comments on commit 69df9eb

Please sign in to comment.