diff --git a/lib/Centreon/Object/Downtime/RtDowntime.php b/lib/Centreon/Object/Downtime/RtDowntime.php index 7de8329f678..cbe80249da9 100644 --- a/lib/Centreon/Object/Downtime/RtDowntime.php +++ b/lib/Centreon/Object/Downtime/RtDowntime.php @@ -73,7 +73,6 @@ public function getHostDowntimes($hostList = array()) "AND d.cancelled = 0 " . "AND service_id IS NULL " . "AND end_time > UNIX_TIMESTAMP(NOW()) " . - "AND start_time < UNIX_TIMESTAMP(NOW()) " . $hostFilter . "ORDER BY actual_start_time, name"; @@ -107,7 +106,6 @@ public function getSvcDowntimes($svcList = array()) "AND s.host_id = h.host_id " . "AND d.cancelled = 0 " . "AND end_time > UNIX_TIMESTAMP(NOW()) " . - "AND start_time < UNIX_TIMESTAMP(NOW()) " . $serviceFilter . "ORDER BY actual_start_time, h.name, s.description";