fix date error
authorAlan <alan@roojs.com>
Fri, 13 Oct 2023 05:13:02 +0000 (13:13 +0800)
committerAlan <alan@roojs.com>
Fri, 13 Oct 2023 05:13:02 +0000 (13:13 +0800)
NotifySend.php

index 6c2a3a8..7fcf583 100644 (file)
@@ -124,7 +124,7 @@ class Pman_Core_NotifySend extends Pman
             HTML_FlexyFramework::get()->Core_Mailer['debug'] = true;
         }
         
-        $sent = (empty($w->sent) || preg_match('/^0000/', $w->sent)) ? false : true;
+        $sent = (empty($w->sent) || preg_match('/^1000/', $w->sent)) ? false : true;
         
         if (!$force && (!empty($w->msgid) || $sent)) {
             $ww = clone($w);