From a4a42dae2ef33c8597b6b192654486d0b3c27d9a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 13 Feb 2014 15:43:07 +0800 Subject: [PATCH] Pman.Dialog.Image.bjs DataObjects/Core_notify.php --- DataObjects/Core_notify.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/DataObjects/Core_notify.php b/DataObjects/Core_notify.php index 790d475d..2776ce4a 100644 --- a/DataObjects/Core_notify.php +++ b/DataObjects/Core_notify.php @@ -152,7 +152,7 @@ class Pman_Core_DataObjects_Core_notify extends DB_DataObject function applyFilters($q, $au, $roo) { - if (isset($q['ontable']) && !in_array($q['ontable'], array('Person', 'Events' . 'core_watch'))) { + if (isset($q['ontable']) && !in_array($q['ontable'], array('Person', 'Events', 'core_watch'))) { // this will only work on tables not joined to ours. //DB_DAtaObject::DebugLevel(1); @@ -190,9 +190,11 @@ class Pman_Core_DataObjects_Core_notify extends DB_DataObject case 'PENDING'; $this->whereAdd('event_id = 0 OR (event_id > 0 AND act_when > NOW() )'); break; + case 'OPENED'; $this->whereAdd('is_open > 0'); break; + case 'ALL': default: break; -- 2.39.2