noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 12/14: Bug : in export card, the textarea was


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 12/14: Bug : in export card, the textarea was not exported in CSV properly
Date: Wed, 28 Oct 2015 09:56:59 +0000

sparkyx pushed a commit to branch master
in repository noalyss.

commit 3920bb9ff881ea6a6b04143009d8e55b00fb60c7
Author: Dany De Bontridder <address@hidden>
Date:   Wed Oct 28 09:04:02 2015 +0100

    Bug : in export card, the textarea was not exported in CSV properly
---
 include/export/export_fiche_csv.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/export/export_fiche_csv.php 
b/include/export/export_fiche_csv.php
index 72cc7d3..0b9b601 100644
--- a/include/export/export_fiche_csv.php
+++ b/include/export/export_fiche_csv.php
@@ -48,12 +48,12 @@ if  ( isset ($_GET['fd_id']))
     {
         if ( $o == 0 )
         {
-            printf("%s",$attribut->ad_text);
+            printf("\"%s\"",$attribut->ad_text);
             $o=1;
         }
         else
         {
-            printf(";%s",$attribut->ad_text);
+            printf(";\"%s\"",$attribut->ad_text);
         }
     }
     printf("\n");



reply via email to

[Prev in Thread] Current Thread [Next in Thread]