History log of /php-src/NEWS (Results 10576 – 10600 of 15462)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# f4d15d82 01-Nov-2010 Felipe Pena

- Fixed bug #47643 (array_diff() takes over 3000 times longer than php 5.2.4)

# 231da1a5 29-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #53198 (changing INI setting "from" with ini_set did not have any
effect)
#Made "from" a proper INI setting and bound it to a global variable.
#Previously, it was simply rea

- Fixed bug #53198 (changing INI setting "from" with ini_set did not have any
effect)
#Made "from" a proper INI setting and bound it to a global variable.
#Previously, it was simply read from the hash table with the parsed ini file
#by using cfg_get_string (I wonder why this mechanism still exists...)

show more ...

# db75ce41 27-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #49687 (utf8_decode vulnerabilities and deficiencies in the number
of reported malformed sequences). (Gustavo)
#Made a public interface for get_next_char/utf-8 in trunk to use i

- Fixed bug #49687 (utf8_decode vulnerabilities and deficiencies in the number
of reported malformed sequences). (Gustavo)
#Made a public interface for get_next_char/utf-8 in trunk to use in utf8_decode.
#In PHP 5.3, trunk's get_next_char was copied to xml.c because 5.3's
#get_next_char is different and is not prepared to recover appropriately from
#errors.

show more ...

# ee80871a 27-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #53180 (post_max_size=0 not disabling the limit when the content
type is application/x-www-form-urlencoded or is not registered with PHP).

# b5b4f94a 26-Oct-2010 Gustavo André dos Santos Lopes

- Fixed ReflectionProperty::isDefault() giving a wrong result for properties
obtained with ReflectionClass::getProperties().

# 0086bc8a 26-Oct-2010 Gustavo André dos Santos Lopes

- Implemented request #44164, zlib.output_compression is now implicitly
disabled when the header "Content-length" is set.
#One could argue that any output handler could change the size of t

- Implemented request #44164, zlib.output_compression is now implicitly
disabled when the header "Content-length" is set.
#One could argue that any output handler could change the size of the
#response, so this exception for zlib.output_compression is an
#inconsistency. However, zlib.output_compression is presented as a
#performance setting, whose value should have no effect on the
#correctness of the scripts. This was not the case. Setting the
#header "content-length" and enabling zlib.output_compression was
#a recipe for infringing section 4.4 of RFC 2616.

show more ...

# 5721132c 25-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #53071 (SPLObjectStorage defeats gc_collect_cycles).

# eabf03f4 24-Oct-2010 Felipe Pena

- BFN

# 68e154b1 22-Oct-2010 Dmitry Stogov

reduced size of temp_variariable

# 8a2a6dbe 20-Oct-2010 Ilia Alshanetsky

Upgraded bundled sqlite to version 3.7.3

# 96c769f6 20-Oct-2010 Ilia Alshanetsky

Upgraded bundled sqlite to version 3.7.3

# 0e24a7c4 19-Oct-2010 Derick Rethans

- Strip out the typehint *checks* only. They are still parsed, and they are
still accessible through the reflection API.

# 8c5921bf 19-Oct-2010 Pierre Joye

- update #52929 and zip NULL deref

# 3ab0b74d 15-Oct-2010 Gustavo André dos Santos Lopes

- Updated NEWS to note fix of bug #53006 now that it's confirmed it's fixed.

# 30d6cc89 14-Oct-2010 Gustavo André dos Santos Lopes

- Fixed get_next_char(), used by htmlentities/htmlspecialchars, accepting
certain ill-formed UTF-8 sequences.

# b88f7753 13-Oct-2010 Dmitry Stogov

Fixed bug #52939 (zend_call_function does not respect ZEND_SEND_PREFER_REF)

# 14a54b90 13-Oct-2010 Gustavo André dos Santos Lopes

- Fixed forward stream seeking emulation in streams that don't support seeking
in situations where the read operation gives back less data than requested
and when there was data in the bu

- Fixed forward stream seeking emulation in streams that don't support seeking
in situations where the read operation gives back less data than requested
and when there was data in the buffer before the emulation started. Also made
more consistent its behavior -- should return failure every time less data
than was requested was skipped.
- Small performance improvement by correcting off-by-one error that generate an
invalid call to the seek handler or read handler. in _php_stream_seek.

show more ...

# 99b613cb 12-Oct-2010 Gustavo André dos Santos Lopes

- Added a 3rd parameter to get_html_translation_table. It now takes a charset
hint, like htmlentities et al.
- Fixed bug #49407 (get_html_translation_table doesn't handle UTF-8).
- Fixe

- Added a 3rd parameter to get_html_translation_table. It now takes a charset
hint, like htmlentities et al.
- Fixed bug #49407 (get_html_translation_table doesn't handle UTF-8).
- Fixed bug #25927 (get_html_translation_table calls the ' &#39; instead of
&#039;).
- Fixed tests for get_html_translation_table and unified the Windows and
non-Windows versions of the tests.

show more ...

# 40c3aefa 11-Oct-2010 Gustavo André dos Santos Lopes

- Removed redundant local variable in dns_get_record.
- (5.3) Fixed bug in the Windows implementation of
dns_get_record, where the two last parameters wouldn't be
filled unless the ty

- Removed redundant local variable in dns_get_record.
- (5.3) Fixed bug in the Windows implementation of
dns_get_record, where the two last parameters wouldn't be
filled unless the type were DNS_ANY (Gustavo).

show more ...

# 4e2fd7ee 08-Oct-2010 Gustavo André dos Santos Lopes

- Fixed a typo in rev #304208 (24 instead of 34/'"').
- Improved the test bug53021.phpt to reflect other fixes in rev #304208.
- Updated NEWS to reflect other fixes in rev #304208.

# 485a0943 08-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #53021 (In html_entity_decode, failure to convert numeric entities with ENT_NOQUOTES and ISO-8859-1).

# 1f86f6be 06-Oct-2010 Andrey Hristov

here comes the news

# 421b86ed 05-Oct-2010 Antony Dovgal

fix bug #50345 (nanosleep not detected properly on some solaris versions)

# 1b60eb88 05-Oct-2010 Dmitry Stogov

Fixed bug #44248 (RFC2616 transgression while HTTPS request through proxy with SoapClient object).

# 455db21e 05-Oct-2010 Dmitry Stogov

Fixed bug #51008 (Zend/tests/bug45877.phpt fails)

1...<<421422423424425426427428429430>>...619