dmitry Tue, 13 Sep 2011 07:07:06 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=316591
Log: Fixed Bug #55649 (Undefined function Bug()). (Laruence) Bug: https://bugs.php.net/55649 (Assigned) Undefined function Bug() Changed paths: U php/php-src/branches/PHP_5_3/NEWS U php/php-src/branches/PHP_5_3/Zend/zend_strtod.c U php/php-src/branches/PHP_5_4/Zend/zend_strtod.c U php/php-src/trunk/Zend/zend_strtod.c Modified: php/php-src/branches/PHP_5_3/NEWS =================================================================== --- php/php-src/branches/PHP_5_3/NEWS 2011-09-13 07:01:46 UTC (rev 316590) +++ php/php-src/branches/PHP_5_3/NEWS 2011-09-13 07:07:06 UTC (rev 316591) @@ -3,6 +3,7 @@ ?? ??? 2011, PHP 5.3.9 - Core: + . Fixed Bug #55649 (Undefined function Bug()). (Laruence) . Fixed bug #52461 (Incomplete doctype and missing xmlns). (virsacer at web dot de, Pierre) . Fixed bug #55366: keys lost when using substr_replace an array. (Arpad) Modified: php/php-src/branches/PHP_5_3/Zend/zend_strtod.c =================================================================== --- php/php-src/branches/PHP_5_3/Zend/zend_strtod.c 2011-09-13 07:01:46 UTC (rev 316590) +++ php/php-src/branches/PHP_5_3/Zend/zend_strtod.c 2011-09-13 07:07:06 UTC (rev 316591) @@ -445,6 +445,12 @@ #endif /* ZTS */ +#ifdef DEBUG +static void Bug(const char *message) { + fprintf(stderr, "%s\n", message); +} +#endif + ZEND_API int zend_startup_strtod(void) /* {{{ */ { #ifdef ZTS Modified: php/php-src/branches/PHP_5_4/Zend/zend_strtod.c =================================================================== --- php/php-src/branches/PHP_5_4/Zend/zend_strtod.c 2011-09-13 07:01:46 UTC (rev 316590) +++ php/php-src/branches/PHP_5_4/Zend/zend_strtod.c 2011-09-13 07:07:06 UTC (rev 316591) @@ -445,6 +445,12 @@ #endif /* ZTS */ +#ifdef DEBUG +static void Bug(const char *message) { + fprintf(stderr, "%s\n", message); +} +#endif + ZEND_API int zend_startup_strtod(void) /* {{{ */ { #ifdef ZTS Modified: php/php-src/trunk/Zend/zend_strtod.c =================================================================== --- php/php-src/trunk/Zend/zend_strtod.c 2011-09-13 07:01:46 UTC (rev 316590) +++ php/php-src/trunk/Zend/zend_strtod.c 2011-09-13 07:07:06 UTC (rev 316591) @@ -445,6 +445,12 @@ #endif /* ZTS */ +#ifdef DEBUG +static void Bug(const char *message) { + fprintf(stderr, "%s\n", message); +} +#endif + ZEND_API int zend_startup_strtod(void) /* {{{ */ { #ifdef ZTS
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
