Report/SendEventErrors.php
authorAlan Knowles <alan@roojs.com>
Thu, 24 Mar 2016 04:05:46 +0000 (12:05 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 24 Mar 2016 04:05:46 +0000 (12:05 +0800)
Report/SendEventErrors.php

index 47e2917..cb331ed 100644 (file)
@@ -100,15 +100,15 @@ class Pman_Admin_Report_SendEventErrors extends Pman_Roo
         $rcpt_ids = DB_DataObject::factory('groups')->lookupMembers("{$this->opts['group']}",'id');
         
         $min = 0;
-        if (!empty($this->opts['uid'])) {
-            $events = DB_DataObject::factory('Events');
-            $events->action = 'ERROR-REPORT-' . $this->opts['uid'];
-            $events->orderBy('id DESC');
-            $events->limit(1);        
-            if ($events->find(true)) {
-                $min = $events->id;
-            }
+        
+        $events = DB_DataObject::factory('Events');
+        $events->action = 'ERROR-REPORT-' . $this->opts['uid'];
+        $events->orderBy('id DESC');
+        $events->limit(1);        
+        if ($events->find(true)) {
+            $min = $events->id;
         }
+    
         
         
         $events = DB_DataObject::factory('Events');