]> granicus.if.org Git - php/commitdiff
MFH: no dots in errors
authorJani Taskinen <jani@php.net>
Sun, 31 May 2009 13:51:23 +0000 (13:51 +0000)
committerJani Taskinen <jani@php.net>
Sun, 31 May 2009 13:51:23 +0000 (13:51 +0000)
ext/json/json.c

index 420889e99ab6edeb77818e95fa4df608e3fb8bd1..f9efc342171086b883f189d5bab4db16b3f59b83 100644 (file)
@@ -371,7 +371,7 @@ PHPAPI void php_json_encode(smart_str *buf, zval *val TSRMLS_DC) /* {{{ */
                        smart_str_appendl(buf, d, len);
                        efree(d);
                 } else {
-                    zend_error(E_WARNING, "[json] (php_json_encode) double %.9g does not conform to the JSON spec, encoded as 0.", dbl);
+                    zend_error(E_WARNING, "[json] (php_json_encode) double %.9g does not conform to the JSON spec, encoded as 0", dbl);
                     smart_str_appendc(buf, '0');
                 }
             }
@@ -384,7 +384,7 @@ PHPAPI void php_json_encode(smart_str *buf, zval *val TSRMLS_DC) /* {{{ */
             json_encode_array(buf, &val TSRMLS_CC);
             break;
         default:
-            zend_error(E_WARNING, "[json] (php_json_encode) type is unsupported, encoded as null.");
+            zend_error(E_WARNING, "[json] (php_json_encode) type is unsupported, encoded as null");
             smart_str_appendl(buf, "null", 4);
             break;
     }