View | Details | Raw Unified | Return to bug 38497
Collapse All | Expand All

(-)a/reports/guided_reports.pl (-1 / +3 lines)
Lines 649-654 elsif ($op eq 'export'){ Link Here
649
                # Add BOM for UTF-8 encoded CSV
649
                # Add BOM for UTF-8 encoded CSV
650
                $content .= "\xEF\xBB\xBF";
650
                $content .= "\xEF\xBB\xBF";
651
651
652
                # Definte delimiter in CSV
653
                $content .= "sep=" . $delimiter . "\n";
654
652
                my $csv = Text::CSV::Encoded->new({ encoding_out => 'UTF-8', sep_char => $delimiter, formula => 'empty' });
655
                my $csv = Text::CSV::Encoded->new({ encoding_out => 'UTF-8', sep_char => $delimiter, formula => 'empty' });
653
                $csv or die "Text::CSV::Encoded->new({binary => 1}) FAILED: " . Text::CSV::Encoded->error_diag();
656
                $csv or die "Text::CSV::Encoded->new({binary => 1}) FAILED: " . Text::CSV::Encoded->error_diag();
654
                if ( $csv->combine( header_cell_values($sth) ) ) {
657
                if ( $csv->combine( header_cell_values($sth) ) ) {
655
- 

Return to bug 38497