mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
Fix warning in PHP 8.0
This commit is contained in:
parent
7af083c6c9
commit
4f41362efe
1 changed files with 1 additions and 2 deletions
|
|
@ -79,8 +79,7 @@ class ncenterliteModel extends ncenterlite
|
|||
{
|
||||
$config->highlight_effect = 'Y';
|
||||
}
|
||||
|
||||
if(!$config->notify_count)
|
||||
if(!isset($config->notify_count) || !$config->notify_count)
|
||||
{
|
||||
$config->notify_count = 5;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue