From ed73eedccdfac5121f0e653f44b4937a584bab32 Mon Sep 17 00:00:00 2001 From: prasad <prasad@vtiger.com> Date: Fri, 2 Feb 2018 01:00:22 +0530 Subject: [PATCH] Fix #766: Settings menu category had to fallback on default app theme. --- modules/Vtiger/views/Basic.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Vtiger/views/Basic.php b/modules/Vtiger/views/Basic.php index d7535a9f8..aa82fd9e3 100644 --- a/modules/Vtiger/views/Basic.php +++ b/modules/Vtiger/views/Basic.php @@ -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 +} -- GitLab