Merge branch '1.0-local' into 1.0

This commit is contained in:
xdrm-brackets 2017-02-23 15:35:28 +01:00
commit 87aa64a732
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
$f_auth->seek(0);
/* (2) Parse each line */
while( $f_auth->eof() ){
while( !$f_auth->eof() ){
/* (3) Try to parse line */
$parsed = json_decode($f_auth->fgets(), true);
@ -235,7 +235,7 @@
/* [2] Parse ACTIONS and cache them
=========================================================*/
/* (1) Parse each line */
while( $f_actions->eof() ){
while( !$f_actions->eof() ){
/* (2) Try to parse line */
$parsed = json_decode($f_actions->fgets(), true);