Fix #1689 알림센터의 z-index 값이 먹지 않던 문제 고침

This commit is contained in:
BJRambo 2021-04-16 14:57:01 +09:00
parent a6ace52c9e
commit 9945cc2562

View file

@ -1124,8 +1124,12 @@ class ncenterliteController extends ncenterlite
}
}
$oTemplateHandler = TemplateHandler::getInstance();
$result = $oTemplateHandler->compile($this->template_path, 'ncenterlite.html');
if($config->zindex)
{
Context::set('ncenterlite_zindex', ' style="z-index:' . $config->zindex . ';" ');
}
$result = TemplateHandler::getInstance()->compile($this->template_path, 'ncenterlite.html');
$this->_addFile();
$output_display = $result . $output_display;
}
@ -1192,11 +1196,6 @@ class ncenterliteController extends ncenterlite
Context::loadFile(array($this->template_path . 'ncenterlite.' . $config->colorset . '.css', '', '', 100));
}
}
if($config->zindex)
{
Context::set('ncenterlite_zindex', ' style="z-index:' . $config->zindex . ';" ');
}
}
function updateNotifyRead($notify, $member_srl)