From: Ivan Kohler Date: Tue, 15 Jan 2013 02:33:04 +0000 (-0800) Subject: fix asterisk_skip_clid import when there's bad data in the clid field, RT#20669 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=3d3b8acd653b2af3d55e78fc30ec34b621d80b71 fix asterisk_skip_clid import when there's bad data in the clid field, RT#20669 --- diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index d24401301..342ee1990 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -1623,7 +1623,7 @@ sub batch_import { if ( $type eq 'csv' ) { - my %attr = (); + my %attr = ( 'binary' => 1, ); $attr{sep_char} = $sep_char if $sep_char; $parser = new Text::CSV_XS \%attr;