fixing number bug in JSON
authormiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 29 Jul 2005 23:57:43 +0000 (23:57 +0000)
committermiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 29 Jul 2005 23:57:43 +0000 (23:57 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@443 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/JSON.pm

index 0b0e16b..1f1177c 100644 (file)
@@ -223,7 +223,7 @@ sub perl2JSON {
                $perl =~ s/\r/\\r/sgo;
                $perl =~ s/\n/\\n/sgo;
                $perl =~ s/(\pM)/sprintf('\u%0.4x',ord($1))/sgoe;
-               if ($perl =~ /^(?:\+|-)?\d*\.?\d+$/) {
+               if (length($perl) < 10 and $perl =~ /^(?:\+|-)?\d*\.?\d+$/) {
                        $output = $perl;
                } else {
                        $output = '"'.$perl.'"';