Skip to content
Snippets Groups Projects
Commit ee30d331 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

Revert trim deletion in ascii parsing

parent 3ef27762
Branches
Tags
No related merge requests found
......@@ -175,7 +175,7 @@ class parseur
// ----------------------------------------------------------------
private function nextAscii($hFic,$separateur)
{
$ret["data"]=fGets($hFic);
$ret["data"] = trim(fGets($hFic));
if($separateur != chr(9)) $ret["data"]=str_replace($separateur,chr(9),$ret["data"]);
if(feof($hFic)) $ret["statut"]="eof";
else $ret["statut"]="ok";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment