mirror of
https://gitee.com/ledc/IYUUAutoReseed
synced 2025-06-12 03:38:57 +00:00
修复缺少isset($configALL['notify_on_change'])判断警告
This commit is contained in:
@ -852,7 +852,7 @@ class AutoReseed
|
||||
private static function wechatMessage()
|
||||
{
|
||||
global $configALL;
|
||||
if ($configALL['notify_on_change'] && self::$wechatMsg['reseedSuccess'] == 0 && self::$wechatMsg['reseedError'] == 0) {
|
||||
if (isset($configALL['notify_on_change']) && $configALL['notify_on_change'] && self::$wechatMsg['reseedSuccess'] == 0 && self::$wechatMsg['reseedError'] == 0) {
|
||||
return;
|
||||
}
|
||||
$br = PHP_EOL;
|
||||
|
Reference in New Issue
Block a user