sylvainjule / kirby-annotator

Kirby field for adding notes to images by pinning them to specific coordinates. Kirby 2 and 3.
MIT License
107 stars 9 forks source link

Update fieldMethods.php #20

Closed bvdputte closed 2 years ago

bvdputte commented 3 years ago

There's an issue with floatval and locales.

It returns "," instead of "." as decimal in some locales. This causes havoc in CSS for positioning as CSS doesn't understand the comma as decimal separator.

AFAIK there's no easy way around this, so I fixed this via a str_replace. This should not cause any breaking changes.

sylvainjule commented 2 years ago

Thanks Bart!