diff options
author | <changelog@php.net> | 2002-05-02 00:25:56 +0000 |
---|---|---|
committer | <changelog@php.net> | 2002-05-02 00:25:56 +0000 |
commit | f46c1527750f4aa9e307e9ce0623d94c25a784e6 (patch) | |
tree | eb36ee1cfb18fddfa57e65c3920aaccc6bb4ad26 | |
parent | 646991d39b872964ff650075dbfe2b33ca46a3fd (diff) | |
download | php-git-f46c1527750f4aa9e307e9ce0623d94c25a784e6.tar.gz |
NEWS update
-rw-r--r-- | NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,11 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2002, Version 4.3.0 +- Fixed a bug in socket_select() that could cause unexpected behavior when using a statement + like $w=$e=array($sock); + This change unfortunately prevents the use of constant values(NULL) for the socket array paramaters. + Instead use a temporary variable or an expression with the leftmost member being a temporary variable. + ex. socket_select($w, $r, $e=NULL, 10); - Added optional 3rd parameter to mysql_select_db() which makes it return the previously selected database name. (Jani) - If possible set Content-Length header in zlib.output_compression mode. (thies) |