superobject icon indicating copy to clipboard operation
superobject copied to clipboard

incorrect boolean value

Open techalexx opened this issue 4 years ago • 0 comments

mysql + php returns '0' for boolean "false". In SuperObject code we see: stString: Result := (Length(FOString) <> 0); so the function TSuperObject.AsBoolean on line 2041 will return "true"

stString: Result := ( ( FOString = 'true' ) or ( FOString = '1' ) );

techalexx avatar Mar 11 '20 14:03 techalexx