Skip to content

Commit

Permalink
Removed strtolower in dashboard/map
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed May 20, 2024
1 parent aeb843f commit 1556e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/controller/extension/dashboard/map.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function map(): void {
$results = $this->model_extension_dashboard_map->getTotalOrdersByCountry();

foreach ($results as $result) {
$json[strtolower($result['iso_code_2'])] = [
$json[$result['iso_code_2']] = [
'total' => $result['total'],
'amount' => $this->currency->format($result['amount'], $this->config->get('config_currency'))
];
Expand Down

0 comments on commit 1556e29

Please sign in to comment.