The function _retrieve_value (line 671 in gladius.php) does not handle nulls. I've found I've had to add the following code to the beginning of the !is_numeric code for both integer and double data types:
if ($value == NULL) { $dest = 0; return true; }
Log in to post a comment.