diff --git a/application/controllers/ConfigController.php b/application/controllers/ConfigController.php index fe25e7ca3..6ab8d2062 100644 --- a/application/controllers/ConfigController.php +++ b/application/controllers/ConfigController.php @@ -310,7 +310,10 @@ class ConfigController extends Controller public function resourceAction() { $this->assertPermission('config/application/resources'); - $this->view->resources = Config::app('resources', true); + $this->view->resources = Config::app('resources', true)->getConfigObject() + ->setKeyColumn('name') + ->select() + ->order('name'); $this->createApplicationTabs()->activate('resource'); }