Skip to content

Commit

Permalink
Fixed populating countries drop-down in order panel
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Jul 20, 2021
1 parent 725e496 commit 80c3342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/jqadm/src/Admin/JQAdm/Order/Standard.php
Expand Up @@ -34,7 +34,7 @@ public function addData( \Aimeos\MW\View\Iface $view ) : \Aimeos\MW\View\Iface
{
$codes = [];

foreach( $this->getContext()->config()->get( 'countries', [] ) as $code ) {
foreach( $this->getContext()->config()->get( 'common/countries', [] ) as $code ) {
$codes[$code] = $view->translate( 'country', $code );
}

Expand Down

0 comments on commit 80c3342

Please sign in to comment.