From: Andrei Zmievski Date: Wed, 5 Jul 2000 15:18:26 +0000 (+0000) Subject: Fix attribution on NEWS. X-Git-Tag: PRE_METHOD_CALL_SEPERATE_FIX_PATCH~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=057264d6ed148d9933b9eb3681911cde7bffd6dc;p=php Fix attribution on NEWS. --- diff --git a/NEWS b/NEWS index b034860924..0b0c217ee8 100644 --- a/NEWS +++ b/NEWS @@ -2,11 +2,12 @@ PHP 4.0 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2000, Version 4.0.2 -- Support for pdflib 3.01 -- FDF Data is handled properly and can be accessed by reading HTTP_RAW_POST_DATA +- Support for pdflib 3.01. (Uwe) +- FDF Data is handled properly and can be accessed by reading + HTTP_RAW_POST_DATA. (Uwe) - Added new 'O' format modifier that will output the GMT offset as "[+-]HHMM" (eg: Pacific time is -0700). This is useful for things such as Date: mail - headers. + headers. (Mike W) - Fixed crash on OCI?Logon() failure. (thies) - Make the special Header("http/...") response be case insensitive like 3.0 (Rasmus) - Allow cybercash to compile as a DL module. (Sterling) diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index 577d35a2f6..7fc0c422fb 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -753,7 +753,7 @@ static void php_wddx_pop_element(void *user_data, const char *name) ent1->data->type == IS_STRING && ent1->data->value.str.len) { zend_bool incomplete_class = 0; - zend_str_tolower(ent1->data->value.str.val,ent1->data->value.str.len); + zend_str_tolower(ent1->data->value.str.val, ent1->data->value.str.len); if (zend_hash_find(EG(class_table), ent1->data->value.str.val, ent1->data->value.str.len+1, (void **) &ce)==FAILURE) { BLS_FETCH();