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

(-)a/C4/Acquisition.pm (-1 / +2 lines)
Lines 241-246 sub GetBasketAsCSV { Link Here
241
    my @rows;
241
    my @rows;
242
    foreach my $order (@orders) {
242
    foreach my $order (@orders) {
243
	my @cols;
243
	my @cols;
244
	# newlines are not valid characters for Text::CSV combine()
245
        $order->{'notes'} =~ s/[\r\n]+//g;
244
	push(@cols,
246
	push(@cols,
245
		$contract->{'contractname'},
247
		$contract->{'contractname'},
246
		$order->{'ordernumber'},
248
		$order->{'ordernumber'},
247
- 

Return to bug 6614