Removing 1024 char limit when using fgets()

This commit is contained in:
phpnut 2009-11-16 10:14:03 -06:00
parent d93c94f702
commit 7211541821

View file

@ -392,7 +392,7 @@ class I18n extends Object {
$header = "";
do {
$line = trim(fgets($file, 1024));
$line = trim(fgets($file));
if ($line == "" || $line[0] == "#") {
continue;
}