diff --git a/administrator/components/com_menus/models/items.php b/administrator/components/com_menus/models/items.php index 6b818d7a42199..ac27ee000485f 100644 --- a/administrator/components/com_menus/models/items.php +++ b/administrator/components/com_menus/models/items.php @@ -110,6 +110,12 @@ protected function populateState($ordering = 'a.lft', $direction = 'asc') $currentClientId = $app->getUserState($this->context . '.client_id', 0); $clientId = $app->input->getInt('client_id', $currentClientId); + // Load mod_menu.ini file when client is administrator + if ($clientId == 1) + { + JFactory::getLanguage()->load('mod_menu', JPATH_ADMINISTRATOR, null, false, true); + } + $currentMenuType = $app->getUserState($this->context . '.menutype', ''); $menuType = $app->input->getString('menutype', $currentMenuType);