Skip to content

Commit

Permalink
escape as an empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardolara authored Dec 21, 2024
1 parent 0046c73 commit ce42671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/translation/lib/QaFileInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static function cacheSave( array $itens )
foreach( $itens as $item )
{
$line = array( $item->sourceHash , $item->targetHash , $item->sourceDir , $item->targetDir , $item->file , $item->days );
fputcsv( $fp , $line, ",", "\"", "\\" );
fputcsv( $fp , $line, escape: "" );
}
fclose($fp);
}
Expand Down

0 comments on commit ce42671

Please sign in to comment.