1
0
-1

I'd like to change the export csv separator from , to ;

 

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      See the function csv_report in open-audit/code_igniter/application/core/MY_Controller.php. There are two license thus:

      $output_csv .= '"'.trim($attribute).'",';

      Change these two lines to the below:

      $output_csv .= '"'.trim($attribute).'";';

      That should do the trick (smile)

        CommentAdd your comment...