This commit is contained in:
Ralf Becker 2004-05-09 10:25:30 +00:00
parent ce9c339c87
commit 84e8c11710

View File

@ -61,7 +61,7 @@
while ($data = fgets($fp,8000))
{
// explode with "\t" and removing "\n" with str_replace, needed to work with mbstring.overload=7
list($message_id,,,$content) = explode("\n",$data);
list($message_id,,,$content) = explode("\t",$data);
$this->langarray[strtolower(trim($message_id))] = str_replace("\n",'',$content);
}
fclose($fp);