Skip to content

Commit bb15ebd

Browse files
sreicheltmotyl
authored andcommitted
Fixes undefined variable, closes #712
1 parent 2056b4b commit bb15ebd

File tree

1 file changed

+1
-1
lines changed
  • app/code/core/Mage/Customer/Model/Convert/Parser

1 file changed

+1
-1
lines changed

app/code/core/Mage/Customer/Model/Convert/Parser/Customer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ public function parse()
696696
if ($customer->getDefaultBilling()) {
697697
$model->setDefaultBilling($customer->getDefaultBilling());
698698
} else {
699-
$shippingAddress->save();
699+
$billingAddress->save();
700700
$model->setDefaultShipping($billingAddress->getId());
701701
$model->addAddress($billingAddress);
702702

0 commit comments

Comments
 (0)