From b5a0f7950e1c7e0e148168a9a7246a8deef603cc Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 19 May 2015 11:17:00 +0200 Subject: [PATCH] Use PHP's DateTime instead of our DateTimeFactory in the TimeLineController I'm about to drop the DateTimeFactory because date_default_timezone_set() in combination w/ PHP's DateTime is sufficient. refs #6778 --- .../application/controllers/TimelineController.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/monitoring/application/controllers/TimelineController.php b/modules/monitoring/application/controllers/TimelineController.php index f1ef32592..78b2ad100 100644 --- a/modules/monitoring/application/controllers/TimelineController.php +++ b/modules/monitoring/application/controllers/TimelineController.php @@ -1,11 +1,8 @@ _request->getParam('start'); $startTimestamp = is_numeric($startParam) ? intval($startParam) : strtotime($startParam); if ($startTimestamp !== false) {