[freeside-commits] branch FREESIDE_3_BRANCH updated. a0ea74d1707964c7657dddaab367d4ea7fe55b4b
Jeremy Davis
jeremyd at 420.am
Tue Jul 1 08:43:36 PDT 2014
The branch, FREESIDE_3_BRANCH has been updated
via a0ea74d1707964c7657dddaab367d4ea7fe55b4b (commit)
from 6b097841bf7a699e61543c866c7b8b7985201693 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a0ea74d1707964c7657dddaab367d4ea7fe55b4b
Author: Jeremy Davis <jeremyd at freeside.biz>
Date: Tue Jul 1 11:43:30 2014 -0400
29050 Fix dates
diff --git a/FS/FS/cdr/orcon.pm b/FS/FS/cdr/orcon.pm
index 1cad011..444b595 100644
--- a/FS/FS/cdr/orcon.pm
+++ b/FS/FS/cdr/orcon.pm
@@ -23,7 +23,7 @@ use Date::Parse;
$calldate =~ /^(\d{4})-(\d{2})-(\d{2})\s*(\d{2}):(\d{2}):(\d{2})$/
or die "unparseable date: $calldate";
- my $tmp_date = "$2/$1/$3 $4:$5:$6";
+ my $tmp_date = "$2/$3/$1 $4:$5:$6";
$tmp_date = str2time($tmp_date);
$cdr->set('startdate', $tmp_date);
-----------------------------------------------------------------------
Summary of changes:
FS/FS/cdr/orcon.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the freeside-commits
mailing list