Browse Source

Fixed Bug #55649 (Undefined function Bug()). (Laruence)

pull/12/head
Dmitry Stogov 15 years ago
parent
commit
12c3dc1b00
  1. 1
      NEWS
  2. 6
      Zend/zend_strtod.c

1
NEWS

@ -3,6 +3,7 @@ PHP NEWS
?? ??? 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)

6
Zend/zend_strtod.c

@ -445,6 +445,12 @@ static MUTEX_T pow5mult_mutex;
#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

Loading…
Cancel
Save