From: Alan Date: Wed, 11 Oct 2023 03:23:35 +0000 (+0800) Subject: more fixes X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=71ffc993ce32a0dc5751800146f1dfc610ab116b more fixes --- diff --git a/NotifySend.php b/NotifySend.php index 959d58e0..3d3fecee 100644 --- a/NotifySend.php +++ b/NotifySend.php @@ -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.... diff --git a/sql/core_notify_blacklist.sql b/sql/core_notify_blacklist.sql index 3c0e001a..e2aa7f5d 100644 --- a/sql/core_notify_blacklist.sql +++ b/sql/core_notify_blacklist.sql @@ -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)