Skip to content
Snippets Groups Projects
Commit ed73eedc authored by Prasad's avatar Prasad
Browse files

Fix #766: Settings menu category had to fallback on default app theme.

parent 224055c9
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ abstract class Vtiger_Basic_View extends Vtiger_Footer_View {
$menuGroupedByParent['SUPPORT'] = $supportGroup;
foreach ($menuGroupedByParent as $parentCategory => $menuList) {
if($parentCategory == 'ANALYTICS') continue;
if($parentCategory == 'ANALYTICS' || $parentCategory == 'SETTINGS') continue;
if(count($menuList) > 0) {
if(array_key_exists($selectedModule, $menuList)) {
$moduleFound = true;
......@@ -181,4 +181,4 @@ abstract class Vtiger_Basic_View extends Vtiger_Footer_View {
$request->validateReadAccess();
}
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment