Skip to content

Commit

Permalink
Merge pull request opencart#2701 from CZechBoY/patch-14
Browse files Browse the repository at this point in the history
Fix default value of error_address
  • Loading branch information
jamesallsup committed Mar 5, 2015
2 parents 6dabea5 + 818bf51 commit 0271d97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/admin/controller/sale/customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ protected function getForm() {
if (isset($this->error['address'])) {
$data['error_address'] = $this->error['address'];
} else {
$data['error_address'] = '';
$data['error_address'] = array();
}

$url = '';
Expand Down Expand Up @@ -1586,4 +1586,4 @@ public function country() {
$this->response->setOutput(json_encode($json));
}

}
}

0 comments on commit 0271d97

Please sign in to comment.