알림센터의 알림이 관리자 페이지의 첫페이지에서 노출되는 문제 고침

This commit is contained in:
BJRambo 2019-02-10 15:22:39 +09:00
parent 935603743f
commit db14f7c8c9

View file

@ -748,8 +748,8 @@ class ncenterliteController extends ncenterlite
return;
}
// HTML 모드가 아니면 중지 + act에 admin이 포함되어 있으면 중지
if(Context::getResponseMethod() != 'HTML' || strpos(strtolower(Context::get('act')), 'admin') !== false)
// HTML 모드가 아니면 중지 + admin 모듈이면 중지
if(Context::getResponseMethod() != 'HTML' || Context::get('module') == 'admin')
{
return;
}
@ -762,12 +762,6 @@ class ncenterliteController extends ncenterlite
$module_info = Context::get('module_info');
// admin 모듈이면 중지
if($module_info->module == 'admin')
{
return;
}
$oNcenterliteModel = getModel('ncenterlite');
$config = $oNcenterliteModel->getConfig();