more fixes
authorAlan <alan@roojs.com>
Wed, 11 Oct 2023 03:23:35 +0000 (11:23 +0800)
committerAlan <alan@roojs.com>
Wed, 11 Oct 2023 03:23:35 +0000 (11:23 +0800)
NotifySend.php
sql/core_notify_blacklist.sql

index 959d58e..3d3fece 100644 (file)
@@ -428,7 +428,7 @@ class Pman_Core_NotifySend extends Pman
         
             
             $res = $mailer->send($p->email, $email['headers'], $email['body']);
-            $this->debug("GOT response to send: ". var_export($res,true)); 
+            $this->debug("GOT response to send: ". print_r($res,true)); 
             
             if ($res === true) {
                 // success....
index 3c0e001..e2aa7f5 100644 (file)
@@ -2,7 +2,7 @@ CREATE  TABLE core_notify_blacklist (
     id INT(11) NOT NULL AUTO_INCREMENT ,
     server_id INT(11) NOT NULL DEFAULT 0,
     domain_id INT(11) NOT NULL DEFAULT 0,
-    added DATETIME NOT NULL DEFAULT '1000-01-01 00:00:00',
+    added_dt DATETIME NOT NULL DEFAULT '1000-01-01 00:00:00',
     error_str TEXT NOT NULL DEFAULT '',
     
     PRIMARY KEY (id)