mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix #2151 warning in PHP 8 @eondcom
This commit is contained in:
parent
5c8aff893d
commit
84c473dda1
1 changed files with 2 additions and 1 deletions
|
|
@ -1060,7 +1060,8 @@ class ncenterliteController extends ncenterlite
|
|||
}
|
||||
|
||||
// 레이아웃에서 알림센터 사용중이라면 중지
|
||||
if(Context::get('layout_info')->use_ncenter_widget == 'Y')
|
||||
$layout_info = Context::get('layout_info');
|
||||
if($layout_info && isset($layout_info->use_ncenter_widget) && $layout_info->use_ncenter_widget == 'Y')
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue