From 71ffc993ce32a0dc5751800146f1dfc610ab116b Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 11 Oct 2023 11:23:35 +0800 Subject: [PATCH] more fixes --- NotifySend.php | 2 +- sql/core_notify_blacklist.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2