Skip to content

Commit

Permalink
Minor fix for city select module compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
integry committed Feb 23, 2012
1 parent 472b9bd commit 1adf530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/model/user/UserAddress.php
Expand Up @@ -48,7 +48,7 @@ public static function getNewInstanceByTransaction(TransactionDetails $details)
$instance->lastName->set($details->lastName->get());
$instance->companyName->set($details->companyName->get());
$instance->address1->set($details->address->get());
$instance->city->set($details->city->get());
$instance->setFieldValue('city', $details->city->get());
$instance->stateName->set($details->state->get());
$instance->postalCode->set($details->postalCode->get());
$instance->countryID->set($details->country->get());
Expand Down

0 comments on commit 1adf530

Please sign in to comment.