From: Alan Knowles Date: Thu, 24 Mar 2016 04:21:00 +0000 (+0800) Subject: Report/SendEventErrors.php X-Git-Url: http://git.roojs.org/?p=Pman.Admin;a=commitdiff_plain;h=3d73c504f76940ef755e88025802d7650d6d796c Report/SendEventErrors.php --- diff --git a/Report/SendEventErrors.php b/Report/SendEventErrors.php index e765047..be2c368 100644 --- a/Report/SendEventErrors.php +++ b/Report/SendEventErrors.php @@ -111,14 +111,15 @@ class Pman_Admin_Report_SendEventErrors extends Pman_Roo $min = 0; - $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; + if ($this->opts['uid'] != 'STD') { + $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');