DataObjects/Core_notify_recur.php
authorChris <chris@roojs.com>
Thu, 24 May 2012 04:25:04 +0000 (12:25 +0800)
committerChris <chris@roojs.com>
Thu, 24 May 2012 04:25:04 +0000 (12:25 +0800)
DataObjects/Core_notify_recur.php

index 7ea2ef3..2031b2c 100644 (file)
@@ -63,7 +63,7 @@ class Pman_Core_DataObjects_Core_notify_recur extends DB_DataObject
         // make a list of datetimes when notifies need to be generated for.
         // it starts 24 hours ago.. or when dtstart
         
-        list($this->start, $this->end) = $this->notifytimesRange($advance);
+        $this->notifytimesRange($advance);
         
         if (strtotime($this->start) > strtotime($this->end)) {
             return array(); // no data..
@@ -150,7 +150,7 @@ class Pman_Core_DataObjects_Core_notify_recur extends DB_DataObject
     function generateNotifications(){
         //$this->notifytimes(2);
         $test = $this->notifytimes(2);
-        error_log($test);
+        error_log($test[0]);
     }
     
 }