mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Removing 1024 char limit when using fgets()
This commit is contained in:
parent
d93c94f702
commit
7211541821
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ class I18n extends Object {
|
|||
$header = "";
|
||||
|
||||
do {
|
||||
$line = trim(fgets($file, 1024));
|
||||
$line = trim(fgets($file));
|
||||
if ($line == "" || $line[0] == "#") {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue