Fix admin controller: call parent::__construct() before fields_list translations
Build / build (push) Successful in 13s

This commit is contained in:
Arne Weiss
2026-06-01 08:13:46 +02:00
parent 2a5b58ad3e
commit d838a4dcc0
@@ -20,6 +20,8 @@ class AdminSimpleWithdrawalController extends ModuleAdminController
$this->list_no_link = false; $this->list_no_link = false;
$this->actions = ['view']; $this->actions = ['view'];
parent::__construct();
$this->fields_list = [ $this->fields_list = [
'id_withdrawal_request' => [ 'id_withdrawal_request' => [
'title' => $this->l('ID'), 'title' => $this->l('ID'),
@@ -56,8 +58,6 @@ class AdminSimpleWithdrawalController extends ModuleAdminController
'filter_key' => 'a!status', 'filter_key' => 'a!status',
], ],
]; ];
parent::__construct();
} }
public function renderScopeLabel($value, $row) public function renderScopeLabel($value, $row)