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
I noticed that the function toStringPoint() in AbstractGeometry.php is affected by locale configuration and can sometimes emit coordinates with comma as a decimal separator (which will fail when persisting to a MariaDB database).
I think the problem is -at least- in line 227, in "vsprintf('%s %s', $point)" where $point is an array of two float values, and vsprintf will respect locale when implicitly converting to string.
The text was updated successfully, but these errors were encountered:
I noticed that the function toStringPoint() in AbstractGeometry.php is affected by locale configuration and can sometimes emit coordinates with comma as a decimal separator (which will fail when persisting to a MariaDB database).
I think the problem is -at least- in line 227, in "vsprintf('%s %s', $point)" where $point is an array of two float values, and vsprintf will respect locale when implicitly converting to string.
The text was updated successfully, but these errors were encountered: