]> granicus.if.org Git - php/commitdiff
NEWS update
author <changelog@php.net> <>
Thu, 2 May 2002 00:25:56 +0000 (00:25 +0000)
committer <changelog@php.net> <>
Thu, 2 May 2002 00:25:56 +0000 (00:25 +0000)
NEWS

diff --git a/NEWS b/NEWS
index a0d29e45a780d582fcfa7c460c3e74dbd679cb85..d035d8eae36f3802c30fd709392d0f118ce333f4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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)