diff --git a/lib/include/php/func b/lib/include/php/func index c02d025..60181f9 100755 --- a/lib/include/php/func +++ b/lib/include/php/func @@ -20,9 +20,9 @@ /* (4) Manage result */ if( is_numeric($out) && $out === "0" ) - return false; - elseif( is_numeric($out) && $out === "127" ) return true; + elseif( is_numeric($out) && $out === "127" ) + return false; else return $out; }