From 0790c8859890e563b00ef66c61c29416e616597d Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Thu, 17 Oct 2024 23:05:51 +0200 Subject: [PATCH] replace n by | not space --- lib/php/out.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/php/out.php b/lib/php/out.php index 5d9b674f..c5287a38 100644 --- a/lib/php/out.php +++ b/lib/php/out.php @@ -555,7 +555,7 @@ Class Out extends Nb { } $line = self::row_csv($o,$row); - $line = str_replace('\n',' ',$line); + $line = str_replace('\n','|',$line); # Search max length string $i = 0; -- 2.47.3