Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #772 from syntaxerror/filefix
Browse files Browse the repository at this point in the history
Fixing #771 - Re-adding deleted lines
  • Loading branch information
denisdulici committed May 8, 2018
2 parents 4b40ccc + 962968c commit 4c828f2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion admin/controller/setting/store.php
Original file line number Diff line number Diff line change
Expand Up @@ -1125,4 +1125,12 @@ public function country() {
'iso_code_3' => $country_info['iso_code_3'],
'address_format' => $country_info['address_format'],
'postcode_required' => $country_info['postcode_required'],
'zone' => $this->model_localisation_zone->getZonesByCountryId($t
'zone' => $this->model_localisation_zone->getZonesByCountryId($this->request->get['country_id']),
'status' => $country_info['status']
);
}

$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
}

0 comments on commit 4c828f2

Please sign in to comment.