Fixed inversed syscall return boolean management
This commit is contained in:
parent
e50db67969
commit
348e784259
|
@ -20,9 +20,9 @@
|
||||||
|
|
||||||
/* (4) Manage result */
|
/* (4) Manage result */
|
||||||
if( is_numeric($out) && $out === "0" )
|
if( is_numeric($out) && $out === "0" )
|
||||||
return false;
|
|
||||||
elseif( is_numeric($out) && $out === "127" )
|
|
||||||
return true;
|
return true;
|
||||||
|
elseif( is_numeric($out) && $out === "127" )
|
||||||
|
return false;
|
||||||
else
|
else
|
||||||
return $out;
|
return $out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue