Browse Source

Fix attribution on NEWS.

PHP-4.0.5
Andrei Zmievski 26 years ago
parent
commit
057264d6ed
  1. 7
      NEWS
  2. 2
      ext/wddx/wddx.c

7
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)

2
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();

Loading…
Cancel
Save