From c1745145e8512fd9bf9de2358e767af2231c6809 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 16 Oct 2012 16:25:56 -0400 Subject: [PATCH] - CRLF fix --- airtime_mvc/application/models/airtime/CcSchedule.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airtime_mvc/application/models/airtime/CcSchedule.php b/airtime_mvc/application/models/airtime/CcSchedule.php index 7e29c7641..4230c54b8 100644 --- a/airtime_mvc/application/models/airtime/CcSchedule.php +++ b/airtime_mvc/application/models/airtime/CcSchedule.php @@ -144,9 +144,9 @@ class CcSchedule extends BaseCcSchedule { $dt = $v; } else if (preg_match('/^[0-9]{1,2}(\.\d{1,6})?$/', $v)) { - // in php 5.3.2 createFromFormat() with "u" is not supported(bug) - // Hence we need to do parsing. - $info = explode('.', $v); + // in php 5.3.2 createFromFormat() with "u" is not supported(bug) + // Hence we need to do parsing. + $info = explode('.', $v); $microsecond = $info[1]; $dt = DateTime::createFromFormat("s", $info[0]); }