diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2014-07-01 11:43:30 -0400 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2014-07-01 11:43:30 -0400 |
commit | a0ea74d1707964c7657dddaab367d4ea7fe55b4b (patch) | |
tree | e4c57a86a86076aa93f2c5ee259be90e49a1f44d | |
parent | 6b097841bf7a699e61543c866c7b8b7985201693 (diff) |
29050 Fix dates
-rw-r--r-- | FS/FS/cdr/orcon.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cdr/orcon.pm b/FS/FS/cdr/orcon.pm index 1cad01118..444b595d0 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); |