From de111318227a9cbb1d4c569965b20a7bb4e1704d Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 3 Sep 2014 14:38:32 +0200 Subject: [PATCH] lib: Fix `DateFormat's `isUnixTimestamp' usage refs #6593 --- application/views/helpers/DateFormat.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application/views/helpers/DateFormat.php b/application/views/helpers/DateFormat.php index a03316f25..76b56be65 100644 --- a/application/views/helpers/DateFormat.php +++ b/application/views/helpers/DateFormat.php @@ -5,7 +5,6 @@ use Icinga\Application\Icinga; use Icinga\Application\Config; use Icinga\Util\DateTimeFactory; -use Icinga\Web\Form\Validator\DateTimeValidator; /** * Helper to format date and time. Utilizes DateTimeFactory to ensure time zone awareness @@ -58,7 +57,7 @@ class Zend_View_Helper_DateFormat extends Zend_View_Helper_Abstract public function format($timestamp, $format) { $dt = DateTimeFactory::create(); - if (DateTimeValidator::isUnixTimestamp($timestamp)) { + if (DateTimeFactory::isUnixTimestamp($timestamp)) { $dt->setTimestamp($timestamp); } else { return $timestamp;