From: Alan Date: Fri, 18 Aug 2023 04:31:12 +0000 (+0800) Subject: missing $ff X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=0b15f1b3a116cf657ca297bff4e57c1bb140f10c missing $ff --- diff --git a/Notify.php b/Notify.php index 351d0888..b5026e89 100644 --- a/Notify.php +++ b/Notify.php @@ -330,7 +330,8 @@ class Pman_Core_Notify extends Pman function isBlacklisted($email) { // return current server id.. - $this->logecho("CHECK BLACKLISTED - {$email}"); + $ff = HTML_FlexyFramework::get(); + //$this->logecho("CHECK BLACKLISTED - {$email}"); if (empty($ff->Core_Notify['servers'])) { return false; } @@ -343,11 +344,11 @@ class Pman_Core_Notify extends Pman $ea = explode('@',$email); $dom = strtolower(array_pop($ea)); - $this->logecho("CHECK BLACKLISTED DOM - {$dom}"); + //$this->logecho("CHECK BLACKLISTED DOM - {$dom}"); if (!in_array($dom, $ff->Core_Notify['servers'][gethostname()]['blacklisted'] )) { return false; } - $this->logecho("RETURN BLACKLISTED TRUE"); + //$this->logecho("RETURN BLACKLISTED TRUE"); return array_search(gethostname(),array_keys($ff->Core_Notify['servers'])); }