ZF-4059: Fix ZF-3423
Description
to fix replace: if (strval(floatval($valueFiltered)) != $valueFiltered) { by: if (strval(floatval($valueFiltered)) != $valueString) {
It's more logical (and works with other locale than 'en'...
to fix replace: if (strval(floatval($valueFiltered)) != $valueFiltered) { by: if (strval(floatval($valueFiltered)) != $valueString) {
It's more logical (and works with other locale than 'en'...
Comments
Posted by Adam Kusmierz (raistlin) on 2008-09-10T15:06:57.000+0000
There is patch in ZF-3423.