You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A change has occurred in PHP 8: is_numeric now returns true for any whitespace after the number. This means that the following now returns TRUE from is_numeric, where previously it returned false:
"10
"
This in turn means the logic in function get_csv in file modules/indicia_svc_data/controllers/data_service_base.php is no longer valid: the string above will no longer be wrapped in quotes, breaking the record over 2 lines.
The text was updated successfully, but these errors were encountered:
A change has occurred in PHP 8: is_numeric now returns true for any whitespace after the number. This means that the following now returns TRUE from is_numeric, where previously it returned false:
"10
"
This in turn means the logic in function get_csv in file modules/indicia_svc_data/controllers/data_service_base.php is no longer valid: the string above will no longer be wrapped in quotes, breaking the record over 2 lines.
The text was updated successfully, but these errors were encountered: