home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / EasyPHP-2.0b1-setup.exe / {app} / php5 / news.txt < prev    next >
Encoding:
Text File  |  2006-11-02  |  115.3 KB  |  2,098 lines

  1. PHP                                                                        NEWS
  2. |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
  3. 02 Nov 2006, PHP 5.2.0
  4. - Updated bundled OpenSSL to version 0.9.8d in the Windows distro. (Edin)
  5. - Updated Postgresql client libraries to 8.1.4 in the Windows distro. (Edin)
  6. - Updated PCRE to version 6.7. (Ilia)
  7. - Updated libsqlite in ext/pdo_sqlite to 3.3.7. (Ilia)
  8. - Updated bundled MySQL client library to version 5.0.22 in the Windows 
  9.   distribution. (Edin)
  10. - Updated timezonedb to version 2006.7. (Derick)
  11.  
  12. - Added ability to make SOAP call userspace PHP<->XML converters. (Dmitry)
  13. - Added support for character sets in pg_escape_string() for PostgreSQL 8.1.4 
  14.   and higher. (Ilia)
  15. - Added support for character sets in PDO quote() method for PostgreSQL 8.1.4 
  16.   and higher. (Ilia)
  17. - Added DSA key generation support to openssl_pkey_new(), FR #38731 (marci
  18.   at balabit dot hu, Tony)
  19. - Added SoapServer::setObject() method (it is a simplified version of
  20.   SoapServer::setClass() method). (Dmitry)
  21. - Added support for hexadecimal entity in imagettftext() for the bundled GD.
  22.   (Pierre)
  23. - Added support for httpOnly flag for session extension and cookie setting 
  24.   functions. (Scott MacVicar, Ilia)
  25. - Added version specific registry keys to allow different configurations for 
  26.   different php version. (Richard, Dmitry)
  27. - Added "PHPINIDir" Apache directive to apache and apache_hooks SAPIs.
  28.   (Dmitry)
  29. - Added an optional boolean parameter to memory_get_usage() and 
  30.   memory_get_peak_usage() to get memory size allocated by emalloc() or real 
  31.   size of memory allocated from system. (Dmitry)
  32. - Added Zip Archive extension. (Pierre)
  33. - Added RFC1867 fileupload processing hook. (Stefan E.)
  34. - Added JSON and Filter extensions. (Derick, Rasmus)
  35. - Added error messages to disk_free_space() and disk_total_space() functions.
  36.   FR #37971 (Tony)
  37. - Added PATHINFO_FILENAME option to pathinfo() to get the filename. 
  38.   (Toby S. and Christian S.)
  39. - Added array_fill_keys() function. (Marcus, Matt Wilmas)
  40. - Added posix_initgroups() function. (Ilia)
  41. - Added an optional parameter to parse_url() to allow retrieval of distinct 
  42.   URL components. (Ilia)
  43. - Added optional parameter to http_build_query() to allow specification of 
  44.   string separator. (Ilia)
  45. - Added image_type_to_extension() function. (Hannes, Ilia)
  46. - Added allow_url_include ini directive to complement allow_url_fopen. (Rasmus)
  47. - Added automatic module globals management. (Dmitry)
  48. - Added RFC2397 (data: stream) support. (Marcus)
  49. - Added new error mode E_RECOVERABLE_ERROR. (Derick, Marcus, Tony)
  50. - Added support for getenv() input filtering. (Rasmus)
  51. - Added support for constructors in interfaces to force constructor signature 
  52.   checks in implementations. (Marcus)
  53. - Added memory_get_peak_usage() function for retrieving peak memory usage of 
  54.   a PHP script. (Ilia)
  55. - Added pg_field_table() function. (Edin)
  56. - Added SimpleXMLElement::saveXML() as an alias for SimpleXMLElement::asXML(). 
  57.   (Hannes)
  58. - Added DOMNode::getNodePath() for getting an XPath for a node. (Christian)
  59. - Added gmp_nextprime() function. (ants dot aasma at gmail dot com, Tony)
  60. - Added error_get_last() function. (Mike)
  61.  
  62. - Removed current working directory from the php.ini search path for CLI and 
  63.   re-added it for other SAPIs (restore to pre 5.1.x behavior). (Edin)
  64. - Moved extensions to PECL:
  65.   . ext/filepro (Derick, Tony)
  66.   . ext/hwapi (Derick, Tony)
  67. - Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or 
  68.   safe_mode are enabled. (Stefan E., Ilia)
  69.  
  70. - Increased default memory limit to 16 megabytes to accommodate for a more 
  71.   accurate memory utilization measurement.
  72. - In addition to path to php.ini, PHPRC now may specify full file name. 
  73.   (Dmitry)
  74.  
  75. - Optimized array/HashTable copying. (Matt Wilmas, Dmitry)
  76. - Optimized zend_try/zend_catch macros by eliminating memcpy(3). (Dmitry)
  77. - Optimized require_once() and include_once() by eliminating fopen(3) on 
  78.   second usage. (Dmitry)
  79. - Optimized request shutdown sequence. Restoring ini directives now iterates 
  80.   only over modified directives instead of all. (Dmitry)
  81.  
  82. - Changed priority of PHPRC environment variable on win32 to be higher then 
  83.   value from registry. (Dmitry)
  84. - Changed __toString() to be called wherever applicable. (Marcus)
  85. - Changed E_ALL error reporting mode to include E_RECOVERABLE_ERROR. (Marcus)
  86. - Changed realpath cache to be disabled when "open_basedir" or "safe_mode" 
  87.   are enabled on per-request basis. (Ilia)
  88.  
  89. - Improved SNMP extension: (Jani)
  90.   . Renamed snmp_set_oid_numeric_print() to snmp_set_oid_output_format(). 
  91.   . Added 2 new constants: SNMP_OID_OUTPUT_FULL and SNMP_OID_OUTPUT_NUMERIC
  92.   . Fixed bug #37564 (AES privacy encryption not possible due to net-snmp 5.2 
  93.     compatibility issue). (Patch: scott dot moynes+php at gmail dot com)
  94. - Improved OpenSSL extension: (Pierre)
  95.   . Added support for all supported algorithms in openssl_verify
  96.   . Added openssl_pkey_get_details, returns the details of a key
  97.   . Added x509 v3 extensions support
  98.   . Added openssl_csr_get_subject() and openssl_csr_get_public_key()
  99.   . Added 3 new constants OPENSSL_VERSION_TEXT and OPENSSL_VERSION_NUMBER and
  100.     OPENSSL_KEYTYPE_EC
  101. - Improved the Zend memory manager: (Dmitry)
  102.   . Removed unnecessary "--disable-zend-memory-manager" configure option.
  103.   . Added "--enable-malloc-mm" configure option which is enabled by default in 
  104.     debug builds to allow using internal and external memory debuggers.
  105.   . Allow tweaking the memory manager with ZEND_MM_MEM_TYPE and ZEND_MM_SEG_SIZE
  106.     environment variables.
  107.   . For more information: Zend/README.ZEND_MM
  108. - Improved safe_mode check for the error_log() function. (Ilia)
  109. - Improved the error reporting in SOAP extension on request failure. (Ilia)
  110. - Improved crypt() on win32 to be about 10 times faster and to have friendlier 
  111.   license. (Frank, Dmitry)
  112. - Improved performance of the implode() function on associated arrays. (Ilia)
  113. - Improved performance of str_replace() when doing 1 char to 1 char or 1 char 
  114.   to many chars replacement. (Ilia)
  115. - Improved apache2filter SAPI:
  116.   . Allowed PHP to be an arbitrary filter in the chain and read the script from
  117.     the Apache stream. (John)
  118.   . Added support for apache2filter in the Windows build including binary 
  119.     support for both Apache 2.0.x (php5apache2_filter.dll) and Apache 2.2.x 
  120.     (php5apache2_2_filter.dll). (Edin)
  121. - Improved apache2handler SAPI:
  122.   . Changed ap_set_content_type() to be called only once. (Mike)
  123.   . Added support for Apache 2.2 handler in the Windows distribution. (Edin)
  124. - Improved FastCGI SAPI: (Dmitry)
  125.   . Removed source compatibility with libfcgi.
  126.   . Optimized access to FastCGI environment variables by using HashTable 
  127.     instead of linear search.
  128.   . Allowed PHP_FCGI_MAX_REQUESTS=0 that assumes no limit.
  129.   . Allowed PHP_FCGI_CHILDREN=0 that assumes no worker children. (FastCGI 
  130.     requests are handled by main process itself)
  131. - Improved CURL: 
  132.   . Added control character checks for "open_basedir" and "safe_mode" checks.
  133.     (Ilia)
  134.   . Added implementation of curl_multi_info_read(). (Brian)
  135. - Improved PCRE: (Andrei)
  136.   . Added run-time configurable backtracking/recursion limits.
  137.   . Added preg_last_error(). (Andrei)
  138. - Improved PDO:
  139.   . Added new attribute ATTR_DEFAULT_FETCH_MODE. (Pierre)
  140.   . Added FETCH_PROPS_LATE. (Marcus)
  141. - Improved SPL: (Marcus)
  142.   . Made most iterator code exception safe.
  143.   . Added RegExIterator and RecursiveRegExIterator.
  144.   . Added full caching support and ArrayAccess to CachingIterator.
  145.   . Added array functions to ArrayObject/ArrayIterator and made them faster.
  146.   . Added support for reading csv and skipping empty lines in SplFileObject.
  147.   . Added CachingIterator::TOSTRING_USE_INNER, calls inner iterator __toString.
  148.   . Added ability to set the CSV separator per SplFileObject.
  149. - Improved xmlReader: (Rob)
  150.   . Added readInnerXml(), xmlReader::setSchema().
  151.   . Added readInnerXML(), readOuterXML(), readString(), setSchema(). (2.6.20+)
  152.   . Changed to passing libxml options when loading reader.
  153.  
  154. - Fixed invalid read in imagecreatefrompng when an empty file is given 
  155.   (Pierre, Tony)
  156. - Fixed infinite loop when a wrong color index is given to imagefill (Pierre)
  157. - Fixed mess with CGI/CLI -d option (now it works with cgi; constants are 
  158.   working exactly like in php.ini; with FastCGI -d affects all requests).
  159.   (Dmitry)
  160. - Fixed missing open_basedir check inside chdir() function. (Ilia)
  161. - Fixed overflow on 64bit systems in str_repeat() and wordwrap(). (Stefan E.)
  162. - Fixed XSLTProcessor::importStylesheet() to return TRUE on success
  163.   (Christian)
  164. - Fixed leaks in openssl_csr_sign and openssl_csr_new (Pierre)
  165. - Fixed phpinfo() cutoff of variables at \0. (Ilia)
  166. - Fixed a bug in the filter extension that prevented magic_quotes_gpc from 
  167.   being applied when RAW filter is used. (Ilia)
  168. - Fixed memory leaks in openssl streams context options. (Pierre)
  169. - Fixed handling of extremely long paths inside tempnam() function. (Ilia)
  170. - Fixed bug #39304 (Segmentation fault with list unpacking of string offset).
  171.   (Dmitry)
  172. - Fixed bug #39192 (Not including nsapi.h properly with SJSWS 7). This will
  173.   make PHP 5.2 compatible to new Sun Webserver. (Uwe)
  174. - Fixed bug #39140 (Uncaught exception may cause crash). (Dmitry)
  175. - Fixed bug #39125 (Memleak when reflecting non-existing class/method). (Tony)
  176. - Fixed bug #39067 (getDeclaringClass() and private properties). (Tony)
  177. - Fixed bug #39039 (SSL: fatal protocol error when fetching HTTPS from servers
  178.   running Google web server). (Ilia)
  179. - Fixed bug #39035 (Compatibility issue between DOM and
  180.   zend.ze1_compatibility_mode). (Rob)
  181. - Fixed bug #39034 (curl_exec() with return transfer returns TRUE on empty
  182.   files). (Ilia)
  183. - Fixed bug #39032 (strcspn() stops on null character). (Tony)
  184. - Fixed bug #39020 (PHP in FastCGI server mode crashes). (Dmitry)
  185. - Fixed bug #39017 (foreach(($obj = new myClass) as $v); echo $obj;
  186.   segfaults). (Dmitry)
  187. - Fixed bug #39004 (Fixed generation of config.nice with autoconf 2.60). (Ilia)
  188. - Fixed bug #39003 (__autoload() is called for type hinting). (Dmitry, Tony)
  189. - Fixed bug #39001 (ReflectionProperty returns incorrect declaring class for
  190.   protected properties). (Tony)
  191. - Fixed bug #38996 (PDO_MYSQL doesn't check connections for liveness). (Tony)
  192. - Fixed bug #38993 (Fixed safe_mode/open_basedir checks for session.save_path,
  193.   allowing them to account for extra parameters). (Ilia)
  194. - Fixed bug #38989 (Absolute path with slash at beginning doesn't work on win).
  195.   (Dmitry)
  196. - Fixed bug #38985 (Can't cast COM objects). (Wez)
  197. - Fixed bug #38981 (using FTP URLs in get_headers() causes crash). (Tony)
  198. - Fixed bug #38963 (Fixed a possible open_basedir bypass in tempnam()). (Ilia)
  199. - Fixed bug #38961 (metaphone() results in segmentation fault on NetBSD).
  200.   (Tony)
  201. - Fixed bug #38949 (Cannot get xmlns value attribute). (Rob)
  202. - Fixed bug #38942 (Double old-style-ctor inheritance). (Dmitry)
  203. - Fixed bug #38941 (imap extension does not compile against new version of the 
  204.   imap library). (Ilia)
  205. - Fixed bug #38934 (move_uploaded_file() cannot read uploaded file outside of 
  206.   open_basedir). (Ilia)
  207. - Fixed bug #38904 (apache2filter changes cwd to /). (Ilia, Hannes)
  208. - Fixed bug #38891 (get_headers() do not work with curl-wrappers). (Ilia)
  209. - Fixed bug #38882 (ldap_connect causes segfault with newer versions of
  210.   OpenLDAP). (Tony)
  211. - Fixed bug #38859 (parse_url() fails if passing '@' in passwd). (Tony)
  212. - Fixed bug #38850 (lookupNamespaceURI doesn't return default namespace). (Rob)
  213. - Fixed bug #38844 (curl_easy_strerror() is defined only since cURL 7.12.0).
  214.   (Tony)
  215. - Fixed bug #38813 (DOMEntityReference->__construct crashes when called
  216.   explicitly). (Rob)
  217. - Fixed bug #38808 ("maybe ref" issue for current() and others). (Dmitry)
  218. - Fixed bug #38779 (engine crashes when require()'ing file with syntax error
  219.   through userspace stream wrapper). (Tony, Dmitry)
  220. - Fixed bug #38772 (inconsistent overriding of methods in different visibility
  221.   contexts). (Dmitry)
  222. - Fixed bug #38759 (PDO sqlite2 empty query causes segfault). (Tony)
  223. - Fixed bug #38721 (Invalid memory read in date_parse()). (Tony, Derick)
  224. - Fixed bug #38700 (SoapClient::__getTypes never returns). (Dmitry)
  225. - Fixed bug #38693 (curl_multi_add_handle() set curl handle to null). (Ilia)
  226. - Fixed bug #38687 (sockaddr local storage insufficient for all sock families).
  227.   (Sara)
  228. - Fixed bug #38661 (mixed-case URL breaks url-wrappers). (Ilia)
  229. - Fixed bug #38653 (memory leak in ReflectionClass::getConstant()). (Tony)
  230. - Fixed bug #38649 (uninit'd optional arg in stream_socket_sendto()). (Sara)
  231. - Fixed bug #38637 (curl_copy_handle() fails to fully copy the cURL handle).
  232.   (Tony, Ilia)
  233. - Fixed bug #38624 (Strange warning when incrementing an object property and
  234.   exception is thrown from __get method). (Tony)
  235. - Fixed bug #38623 (leaks in a tricky code with switch() and exceptions).
  236.   (Dmitry)
  237. - Fixed bug #38579 (include_once() may include the same file twice). (Dmitry)
  238. - Fixed bug #38574 (missing curl constants and improper constant detection).
  239.   (Ilia)
  240. - Fixed bug #38543 (shutdown_executor() may segfault when memory_limit is too 
  241.   low). (Dmitry)
  242. - Fixed bug #38535 (memory corruption in pdo_pgsql driver on error retrieval 
  243.   inside a failed query executed via query() method). (Ilia)
  244. - Fixed bug #38534 (segfault when calling setlocale() in userspace session
  245.   handler). (Tony)
  246. - Fixed bug #38524 (strptime() does not initialize the internal date storage
  247.   structure). (Ilia)
  248. - Fixed bug #38511, #38473, #38263 (Fixed session extension request shutdown
  249.   order to ensure it is shutdown before the extensions it may depend on).
  250.   (Ilia)
  251. - Fixed bug #38488 (Access to "php://stdin" and family crashes PHP on win32).
  252.   (Dmitry)
  253. - Fixed bug #38474 (getAttribute select attribute by order, even when
  254.   prefixed). (Rob)
  255. - Fixed bug #38467 (--enable-versioning causes make fail on OS X). (Tony)
  256. - Fixed bug #38465 (ReflectionParameter fails if default value is an access 
  257.   to self::). (Johannes)
  258. - Fixed bug #38464 (array_count_values() mishandles numeric strings).
  259.   (Matt Wilmas, Ilia)
  260. - Fixed bug #38461 (setting private attribute with __set() produces
  261.   segfault). (Tony)
  262. - Fixed bug #38458, PECL bug #8944, PECL bug #7775 (error retrieving columns 
  263.   after long/text columns with PDO_ODBC). (Wez)
  264. - Fixed bug #38454 (warning upon disabling handler via
  265.   xml_set_element_handler). (dtorop933 at gmail dot com, Rob)
  266. - Fixed bug #38451 (PDO_MYSQL doesn't compile on Solaris). (Tony)
  267. - Fixed bug #38450 (constructor is not called for classes used in userspace
  268.   stream wrappers). (Tony)
  269. - Fixed bug #38438 (DOMNodeList->item(0) segfault on empty NodeList). (Ilia)
  270. - Fixed bug #38431 (xmlrpc_get_type() crashes PHP on objects). (Tony)
  271. - Fixed bug #38427 (unicode causes xml_parser to misbehave). (Rob)
  272. - Fixed bug #38424 (Different attribute assignment if new or existing). (Rob)
  273. - Fixed bug #38400 (Use of com.typelib_file may cause a crash). (Ilia)
  274. - Fixed bug #38394 (PDO fails to recover from failed prepared statement
  275.   execution). (Ilia)
  276. - Fixed bug #38377 (session_destroy() gives warning after 
  277.   session_regenerate_id()). (Ilia)
  278. - Implemented #38357 (dbase_open can't open DBase 3 dbf file).
  279.   (rodrigo at fabricadeideias dot com, Mike)
  280. - Fixed bug #38354 (Unwanted reformatting of XML when using AsXML). (Christian)
  281. - Fixed bug #38347 (Segmentation fault when using foreach with an unknown/empty
  282.   SimpleXMLElement). (Tony)
  283. - Fixed bug #38322 (reading past array in sscanf() leads to arbitrary code
  284.   execution). (Tony)
  285. - Fixed bug #38315 (Constructing in the destructor causes weird behavior).
  286.   (Dmitry)
  287. - Fixed bug #38303 (spl_autoload_register() suppress all errors silently).
  288.   (Ilia)
  289. - Fixed bug #38290 (configure script ignores --without-cdb,inifile,flatfile).
  290.   (Marcus)
  291. - Fixed bug #38289 (segfault in session_decode() when _SESSION is NULL).
  292.   (Tony)
  293. - Fixed bug #38287 (static variables mess up global vars). (Dmitry)
  294. - Fixed bug #38278 (session_cache_expire()'s value does not match phpinfo's
  295.   session.cache_expire). (Tony)
  296. - Fixed bug #38276 (file_exists() works incorrectly with long filenames
  297.   on Windows). (Ilia, Tony)
  298. - Fixed bug #38269 (fopen wrapper doesn't fail on invalid hostname with
  299.   curlwrappers enabled). (Tony)
  300. - Fixed bug #38265 (heap corruption). (Dmitry)
  301. - Fixed bug #38261 (openssl_x509_parse() leaks with invalid cert) (Pierre)
  302. - Fixed bug #38255 (openssl possible leaks while passing keys) (Pierre)
  303. - Fixed bug #38253 (PDO produces segfault with default fetch mode). (Tony)
  304. - Fixed bug #38251 (socket_select() and invalid arguments). (Tony)
  305. - Fixed bug #38236 (Binary data gets corrupted on multipart/formdata POST).
  306.   (Ilia)
  307. - Fixed bug #38234 (Exception in __clone makes memory leak). (Dmitry, Nuno)
  308. - Fixed bug #38229 (strtotime() does not parse YYYY-MM format). (Ilia)
  309. - Fixed bug #38224 (session extension can't handle broken cookies). (Ilia)
  310. - Fixed bug #38220 (Crash on some object operations). (Dmitry)
  311. - Fixed bug #38217 (ReflectionClass::newInstanceArgs() tries to allocate too
  312.   much memory). (Tony)
  313. - Fixed bug #38214 (gif interlace output cannot work). (Pierre)
  314. - Fixed bug #38213, #37611, #37571 (wddx encoding fails to handle certain
  315.   characters). (Ilia)
  316. - Fixed bug #38212 (Segfault on invalid imagecreatefromgd2part() parameters).
  317.   (Pierre)
  318. - Fixed bug #38211 (variable name and cookie name match breaks script 
  319.   execution). (Dmitry)
  320. - Fixed bug #38199 (fclose() unable to close STDOUT and STDERR). (Tony)
  321. - Fixed bug #38198 (possible crash when COM reports an exception). (Ilia)
  322. - Fixed bug #38194 (ReflectionClass::isSubclassOf() returns TRUE for the 
  323.   class itself). (Ilia)
  324. - Fixed bug #38183 (disable_classes=Foobar causes disabled class to be 
  325.   called Foo). (Jani)
  326. - Fixed bug #38179 (imagecopy from a palette to a truecolor image loose alpha 
  327.   channel) (Pierre)
  328. - Fixed bug #38173 (Freeing nested cursors causes OCI8 to segfault). (Tony)
  329. - Fixed bug #38168 (Crash in pdo_pgsql on missing bound parameters). (Ilia)
  330. - Fixed bug #38161 (oci_bind_by_name() returns garbage when Oracle didn't set
  331.   the variable). (Tony)
  332. - Fixed bug #38146 (Cannot use array returned from foo::__get('bar') in write 
  333.   context). (Dmitry)
  334. - Fixed bug #38132 (ReflectionClass::getStaticProperties() retains \0 in key 
  335.   names). (Ilia)
  336. - Fixed bug #38125 (undefined reference to spl_dual_it_free_storage). (Marcus)
  337. - Fixed bug #38112 (corrupted gif segfaults) (Pierre)
  338. - Fixed bug #38096 (large timeout values ignored on 32bit machines in 
  339.   stream_socket_accept() and stream_socket_client()). (Ilia)
  340. - Fixed bug #38086 (stream_copy_to_stream() returns 0 when maxlen is bigger
  341.   than the actual length). (Tony)
  342. - Fixed bug #38072 (boolean arg for mysqli_autocommit() is always true on
  343.   Solaris). (Tony)
  344. - Fixed bug #38067 (Parameters are not decoded from utf-8 when using encoding 
  345.   option). (Dmitry)
  346. - Fixed bug #38064 (ignored constructor visibility). (Marcus)
  347. - Fixed bug #38055 (Wrong interpretation of boolean parameters). (Dmitry)
  348. - Fixed bug #38047 ("file" and "line" sometimes not set in backtrace from 
  349.   inside error handler). (Dmitry)
  350. - Fixed bug #38019 (segfault extending mysqli class). (Dmitry)
  351. - Fixed bug #38005 (SoapFault faultstring doesn't follow encoding rules).
  352.   (Dmitry)
  353. - Fixed bug #38004 (Parameters in SoapServer are decoded twice). (Dmitry)
  354. - Fixed bug #38003 (in classes inherited from MySQLi it's possible to call
  355.   private constructors from invalid context). (Tony)
  356. - Fixed bug #37987 (invalid return of file_exists() in safe mode). (Ilia)
  357. - Fixed bug #37947 (zend_ptr_stack reallocation problem). (Dmitry)
  358. - Fixed bug #37945 (pathinfo() cannot handle argument with special characters 
  359.   like German "Umlaut"). (Mike)
  360. - Fixed bug #37931 (possible crash in OCI8 after database restart
  361.   when using persistent connections). (Tony)
  362. - Fixed bug #37923 (Display constant value in reflection::export). (Johannes)
  363. - Fixed bug #37920 (compilation problems on z/OS). (Tony)
  364. - Fixed bug #37870 (pgo_pgsql tries to de-allocate unused statements).
  365.   (Ilia, ce at netage dot bg)
  366. - Fixed bug #37864 (file_get_contents() leaks on empty file). (Hannes)
  367. - Fixed bug #37862 (Integer pointer comparison to numeric value).
  368.   (bugs-php at thewrittenword dot com)
  369. - Fixed bug #37846 (wordwrap() wraps incorrectly). (ddk at krasn dot ru, Tony)
  370. - Fixed bug #37816 (ReflectionProperty does not throw exception when accessing
  371.   protected attribute). (Marcus)
  372. - Fixed bug #37811 (define not using toString on objects). (Marcus)
  373. - Fixed bug #37807 (segmentation fault during SOAP schema import). (Tony)
  374. - Fixed bug #37806 (weird behavior of object type and comparison). (Marcus)
  375. - Fixed bug #37780 (memory leak trying to execute a non existing file (CLI)).
  376.   (Mike)
  377. - Fixed bug #37779 (empty include_path leads to search for files inside /).
  378.   (jr at terragate dot net, Ilia)
  379. - Fixed bug #37747 (strtotime segfaults when given "nextyear"). (Derick)
  380. - Fixed bug #37720 (merge_php_config scrambles values).
  381.   (Mike, pumuckel at metropolis dot de)
  382. - Fixed bug #37709 (Possible crash in PDO::errorCode()). (Ilia)
  383. - Fixed bug #37707 (clone without assigning leaks memory). (Ilia, Nuno, Dmitri)
  384. - Fixed bug #37705 (Semaphore constants not available). (Ilia)
  385. - Fixed bug #37671 (MySQLi extension fails to recognize BIT column). (Ilia)
  386. - Fixed bug #37667 (Object is not added into array returned by __get). (Marcus)
  387. - Fixed bug #37635 (parameter of pcntl signal handler is trashed). (Mike)
  388. - Fixed bug #37632 (Protected method access problem). (Marcus)
  389. - Fixed bug #37630 (MySQL extensions should link against thread safe client 
  390.   libs if built with ZTS). (Mike)
  391. - Fixed bug #37620 (mysqli_ssl_set validation is inappropriate). (Georg)
  392. - Fixed bug #37616 (DATE_RFC822 does not product RFC 822 dates).
  393.   (Hannes Magnusson, Derick)
  394. - Fixed bug #37614 (Class name lowercased in error message). (Johannes)
  395. - Fixed bug #37587 (var without attribute causes segfault). (Marcus)
  396. - Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for recursion 
  397.   limit support). (Ilia)
  398. - Fixed bug #37581 (oci_bind_array_by_name clobbers input array when using
  399.   SQLT_AFC, AVC). (Tony)
  400. - Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). (Ilia)
  401. - Fixed bug #37565 (Using reflection::export with simplexml causing a crash).
  402.   (Marcus)
  403. - Fixed bug #37564 (AES privacy encryption not possible due to net-snmp 5.2 
  404.   compatibility issue). (Jani, patch by scott dot moynes+php at gmail dot com)
  405. - Fixed bug #37563 (array_key_exists performance is poor for &$array). (Ilia)
  406. - Fixed bug #37558 (timeout functionality doesn't work after a second PHP 
  407.   start-up on the same thread). (p dot desarnaud at wanadoo dot fr)
  408. - Fixed bug #37531 (oci8 persistent connection corruption). (Tony)
  409. - Fixed bug #37523 (namespaces added too late, leads to missing xsi:type 
  410.   attributes. Incompatibility with libxml2-2.6.24). (Dmitry)
  411. - Fixed bug #37514 (strtotime doesn't assume year correctly). (Derick)
  412. - Fixed bug #37510 (session_regenerate_id changes session_id() even on
  413.   failure). (Hannes)
  414. - Fixed bug #37505 (touch() truncates large files). (Ilia)
  415. - Fixed bug #37499 (CLI segmentation faults during cleanup with sybase-ct
  416.   extension enabled). (Tony)
  417. - Fixed bug #37496 (FastCGI output buffer overrun). (Piotr, Dmitry)
  418. - Fixed bug #37487 (oci_fetch_array() array-type should always default to 
  419.   OCI_BOTH). (Tony)
  420. - Fixed bug #37457 (Crash when an exception is thrown in accept() method of
  421.   FilterIterator). (Marcus)
  422. - Fixed bug #37456 (DOMElement->setAttribute() loops forever). (Rob)
  423. - Fixed bug #37445 (Fixed crash in pdo_mysql resulting from premature object
  424.   destruction). (Ilia)
  425. - Fixed bug #37428 (PHP crashes on windows if there are start-up errors and 
  426.   event log is used for logging them). (Edin)
  427. - Fixed bug #37418 (tidy module crashes on shutdown). (Tony)
  428. - Fixed bug #37416 (iterator_to_array() hides exceptions thrown in rewind()
  429.   method). (Tony)
  430. - Fixed bug #37413 (Rejected versions of flex that don't work). (Ilia)
  431. - Fixed bug #37395 (recursive mkdir() fails to create nonexistent directories
  432.   in root dir). (Tony)
  433. - Fixed bug #37394 (substr_compare() returns an error when offset equals
  434.   string length). (Ilia)
  435. - Fixed bug #37392 (Unnecessary call to OCITransRollback() at the end of
  436.   request). (Tony)
  437. - Fixed bug #37376 (fastcgi.c compile fail with gcc 2.95.4). (Ilia)
  438. - Fixed bug #37368 (Incorrect timestamp returned for strtotime()). (Derick)
  439. - Fixed bug #37363 (PDO_MYSQL does not build if no other mysql extension is 
  440.   enabled). (Mike)
  441. - Fixed bug #37348 (make PEAR install ignore open_basedir). (Ilia)
  442. - Fixed bug #37341 ($_SERVER in included file is shortened to two entries, 
  443.   if $_ENV gets used). (Dmitry)
  444. - Fixed bug #37313 (sigemptyset() used without including <signal.h>).
  445.   (jdolecek)
  446. - Fixed bug #37306 (max_execution_time = max_input_time). (Dmitry)
  447. - Fixed bug #37278 (SOAP not respecting uri in __soapCall). (Dmitry)
  448. - Fixed bug #37265 (Added missing safe_mode & open_basedir checks to 
  449.   imap_body()). (Ilia)
  450. - Fixed bug #37262 (var_export() does not escape \0 character). (Ilia)
  451. - Fixed bug #37256 (php-fastcgi doesn't handle connection abort). (Dmitry)
  452. - Fixed bug #37244 (Added strict flag to base64_decode() that enforces
  453.   RFC3548 compliance). (Ilia)
  454. - Fixed bug #37144 (PHP crashes trying to assign into property of dead object).
  455.   (Dmitry)
  456. - Fixed bug #36949 (invalid internal mysqli objects dtor). (Mike)
  457. - Implement #36732 (req/x509 extensions support for openssl_csr_new and 
  458.   openssl_csr_sign) (ben at psc dot edu, Pierre)
  459. - Fixed bug #36759 (Objects destructors are invoked in wrong order when script
  460.   is finished). (Dmitry)
  461. - Fixed bug #36681 (pdo_pgsql driver incorrectly ignored some errors).
  462.   (Wez, Ilia)
  463. - Fixed bug #36630 (umask not reset at the end of the request). (Ilia)
  464. - Fixed bug #36515 (Unlinking buckets from non-existent brigades). (Sara)
  465. - Fixed bug #35973 (Error ORA-24806 occurs when trying to fetch a NCLOB
  466.   field). (Tony)
  467. - Fixed bug #35886 (file_get_contents() fails with some combinations of 
  468.   offset & maxlen). (Nuno)
  469. - Fixed bug #35512 (Lack of read permission on main script results in
  470.   E_WARNING rather then E_ERROR). (Ilia)
  471. - Fixed bug #34180 (--with-curlwrappers causes PHP to disregard some HTTP
  472.   stream context options). (Mike)
  473. - Fixed bug #34066 (recursive array_walk causes segfault). (Tony)
  474. - Fixed bug #34065 (throw in foreach causes memory leaks). (Dmitry)
  475. - Fixed bug #34005 (oci_password_change() fails). 
  476.   (pholdaway at technocom-wireless dot com, Tony)
  477. - Fixed bug #33895 (Missing math constants). (Hannes)
  478. - Fixed bug #33770 (https:// or ftps:// do not work when --with-curlwrappers
  479.   is used and ssl certificate is not verifiable). (Ilia)
  480. - Fixed bug #29538 (number_format and problem with 0). (Matt Wilmas)
  481. - Implement #28382 (openssl_x509_parse() extensions support) (Pierre)
  482. - Fixed PECL bug #9061 (oci8 might reuse wrong persistent connection). (Tony)
  483. - Fixed PECL bug #8816 (issue in php_oci_statement_fetch with more than one
  484.   piecewise column) (jeff at badtz-maru dot com, Tony)
  485. - Fixed PECL bug #8112 (OCI8 persistent connections misbehave when Apache
  486.   process times out). (Tony)
  487. - Fixed PECL bug #7755 (error selecting DOUBLE fields with PDO_ODBC).
  488.   ("slaws", Wez)
  489.  
  490.  
  491. 04 May 2006, PHP 5.1.4
  492. - Added "capture_peer_cert" and "capture_peer_cert_chain" context options
  493.   for SSL streams. (Wez).
  494. - Added PDO::PARAM_EVT_* family of constants. (Sara)
  495. - Fixed possible crash in highlight_string(). (Dmitry)
  496. - Fixed bug #37291 (FastCGI no longer works with isapi_fcgi.dll). (Dmitry)
  497. - Fixed bug #37277 (cloning Dom Documents or Nodes does not work). (Rob)
  498. - Fixed bug #37276 (problems with $_POST array). (Dmitry)
  499. - Fixed bug #36632 (bad error reporting for pdo_odbc exec UPDATE). (Wez).
  500. - Fixed bug #35552 (crash when pdo_odbc prepare fails). (Wez).
  501.  
  502. 28 Apr 2006, PHP 5.1.3
  503. - Updated bundled PCRE library to version 6.6. (Andrei)
  504. - Moved extensions to PECL:
  505.   . ext/msession (Derick)
  506. - Reimplemented FastCGI interface. (Dmitry)
  507. - Improved SPL: (Marcus)
  508.   - Fixed issues with not/double calling of constructors of SPL iterators.
  509.   - Fixed issues with info-class/file-class in SPL directory handling classes.
  510.   - Fixed ArrayIterator::seek().
  511.   - Added SimpleXMLIterator::count().
  512.   - Dropped erroneous RecursiveDirectoryIterator::getSubPathInfo().
  513. - Improved SimpleXML: (Marcus, Rob)
  514.   . Added SimpleXMLElement::getName() to retrieve name of element.
  515.   . Added ability to create elements on the fly.
  516.   . Added addChild() method for element creation supporting namespaces.
  517.   . Added addAttribute() method for attribute creation supporting namespaces.
  518.   . Added ability to delete specific elements and attributes by offset.
  519. - Improved Reflection API: (Marcus)
  520.   . Added ReflectionClass::newInstanceArgs($args).
  521.   . Added ability to analyze extension dependency.
  522.   . Added ReflectionFunction::isDeprecated() and constant IS_DEPRECATED.
  523.   . Added ReflectionParameter::getDeclaringClass().
  524.   . Changed reflection constants to be prefixed with IS_. (Johannes)
  525. - Improved cURL extension: (Ilia)
  526.   . Added curl_setopt_array() function that allows setting of multiple 
  527.     options via an associated array.
  528.   . Added the ability to retrieve the request message sent to the server.
  529. - Improved GD extension: (Pierre)
  530.   . Added a weak/tolerant mode to the JPEG loader.
  531.   . Added filtering mode option to imagepng() to allow reducing file size.
  532.   . Fixed imagecolorallocate() and imagecolorallocatelapha() to return FALSE 
  533.     on error.
  534. - Changed get_headers() to retrieve headers also from non-200 responses.
  535.   (Ilia)
  536. - Changed get_headers() to use the default context. (Ilia)
  537. - Added lchown() and lchgrp() to change user/group ownership of symlinks.
  538.   (Derick)
  539. - Added support for exif date format in strtotime(). (Derick)
  540. - Added a check for special characters in the session name. (Ilia)
  541. - Added "consumed" stream filter. (Marcus)
  542. - Added new mysqli constants for BIT and NEW_DECIMAL field types: 
  543.   MYSQLI_TYPE_NEWDECIMAL and MYSQLI_TYPE_BIT. FR #36007. (Georg)
  544. - Added imap_savebody() that allows message body to be written to a 
  545.   file. (Mike)
  546. - Added overflow checks to wordwrap() function. (Ilia)
  547. - Added support for BINARY_DOUBLE and BINARY_FLOAT to PDO_OCI and OCI8 
  548.   (also fixes bug #36764). (Tony)
  549. - Eliminated run-time constant fetching for TRUE, FALSE and NULL. (Dmitry) 
  550. - Removed the E_STRICT deprecation notice from "var". (Ilia)
  551. - Fixed reading stream filters never notified about EOF. (Mike)
  552. - Fixed tempnam() 2nd parameter to be checked against path components. (Ilia)
  553. - Fixed a bug that would not fill in the fifth argument to preg_replace() 
  554.   properly, if the variable was not declared previously. (Andrei)
  555. - Fixed safe_mode check for source argument of the copy() function. (Ilia)
  556. - Fixed mysqli bigint conversion under Windows (Georg)
  557. - Fixed XSS inside phpinfo() with long inputs. (Ilia)
  558. - Fixed Apache2 SAPIs header handler modifying header strings. (Mike)
  559. - Fixed 'auto_globals_jit' to work together with 'register_argc_argv'. (Dmitry)
  560. - Fixed offset/length parameter validation in substr_compare() function. (Ilia)
  561. - Fixed debug_zval_dump() to support private and protected members. (Dmitry)
  562. - Fixed SoapFault::getMessage(). (Dmitry)
  563. - Fixed issue with iconv_mime_decode where the "encoding" would only allow 
  564.   upper case specifiers. (Derick)
  565. - Fixed tiger hash algorithm generating wrong results on big endian platforms.
  566.   (Mike)
  567. - Fixed crash with DOMImplementation::createDocumentType("name:"). (Mike)
  568. - Fixed bug #37205 (Serving binary content/images fails with "comm with server 
  569.   aborted" FastCGI err). (Dmitry)
  570. - Fixed bug #37192 (cc may complain about non-constant initializers in 
  571.   hash_adler.c). (Mike)
  572. - Fixed bug #37191 (chmod takes off sticky bit when safe_mode is On). (Tony)    
  573. - Fixed bug #37167 (PDO segfaults when throwing exception from the 
  574.   fetch handler). (Tony)
  575. - Fixed bug #37162 (wddx does not build as a shared extension).
  576.   (jdolecek at NetBSD dot org, Ilia)
  577. - Fixed bug #37158 (fread behavior changes after calling 
  578.   stream_wrapper_register). (Wez)
  579. - Fixed bug #37138 (__autoload tries to load callback'ed self and parent). 
  580.   (Dmitry)
  581. - Fixed bug #37103 (libmbfl headers not installed). (Jani) 
  582. - Fixed bug #37062 (compile failure on ARM architecture). (Tony)
  583. - Fixed bug #37061 (curl_exec() doesn't zero-terminate binary strings). (Tony)
  584. - Fixed bug #37060 (Type of retval of Countable::count() is not checked).  
  585.   (Johannes)
  586. - Fixed bug #37059 (oci_bind_by_name() doesn't support RAW and LONG RAW 
  587.   fields). (Tony)
  588. - Fixed bug #37057 (xmlrpc_decode() may produce arrays with numeric strings, 
  589.   which are unaccessible). (Tony)
  590. - Fixed bug #37055 (incorrect reference counting for persistent OCI8 
  591.   connections). (Tony)
  592. - Fixed bug #37054 (SoapClient Error Fetching http headers). (Dmitry)
  593. - Fixed bug #37053 (html_errors with internal classes produces wrong links).
  594.   (Tony)
  595. - Fixed bug #37046 (foreach breaks static scope). (Dmitry)
  596. - Fixed bug #37045 (Fixed check for special chars for http redirects). (Ilia)
  597. - Fixed bug #37017 (strtotime fails before 13:00:00 with some time zones 
  598.   identifiers). (Derick)
  599. - Fixed bug #37002 (Have to quote literals in INI when concatenating with 
  600.   vars). (Dmitry)z
  601. - Fixed bug #36988 (mktime freezes on long numbers). (Derick)
  602. - Fixed bug #36981 (SplFileObject->fgets() ignores max_length). (Tony)
  603. - Fixed bug #36957 (serialize() does not handle recursion). (Ilia)
  604. - Fixed bug #36944 (strncmp & strncasecmp do not return false on negative 
  605.   string length). (Tony)
  606. - Fixed bug #36941 (ArrayIterator does not clone itself). (Marcus)
  607. - Fixed bug #36934 (OCILob->read() doesn't move internal pointer when 
  608.   reading 0's). (Tony)
  609. - Fixed bug #36908 (wsdl default value overrides value in soap request). 
  610.   (Dmitry)
  611. - Fixed bug #36898 (__set() leaks in classes extending internal ones).
  612.   (Tony, Dmitry)
  613. - Fixed bug #36886 (User filters can leak buckets in some situations). (Ilia)
  614. - Fixed bug #36878 (error messages are printed even though an exception has 
  615.   been thrown). (Tony)
  616. - Fixed bug #36875 (is_*() functions do not account for open_basedir). (Ilia)
  617. - Fixed bug #36872 (session_destroy() fails after call to 
  618.   session_regenerate_id(true)). (Ilia)
  619. - Fixed bug #36869 (memory leak in output buffering when using chunked 
  620.   output). (Tony)
  621. - Fixed bug #36859 (DOMElement crashes when calling __construct when 
  622.   cloning). (Tony)
  623. - Fixed bug #36857 (Added support for partial content fetching to the 
  624.   HTTP streams wrapper). (Ilia)
  625. - Fixed bug #36851 (Documentation and code discrepancies for NULL 
  626.   data in oci_fetch_*() functions). (Tony)
  627. - Fixed bug #36825 (Exceptions thrown in ArrayObject::offsetGet cause 
  628.   segfault). (Tony)
  629. - Fixed bug #36820 (Privileged connection with an Oracle password file 
  630.   fails). (Tony)
  631. - Fixed bug #36809 (__FILE__ behavior changed). (Dmitry)
  632. - Fixed bug #36808 (syslog ident becomes garbage between requests). (Tony)
  633. - Fixed bug #36802 (mysqli_set_charset() crash with a non-open connection).
  634.   (Ilia)
  635. - Fixed bug #36756 (DOMDocument::removeChild corrupts node). (Rob)
  636. - Fixed bug #36749 (SOAP: 'Error Fetching http body' when using HTTP Proxy).
  637.   (Dmitry)
  638. - Fixed bug #36745 (No error message when load data local file isn't found).
  639.   (Georg)
  640. - Fixed bug #36743 (In a class extending XMLReader array properties are not 
  641.   writable). (Tony)
  642. - Fixed bug #36727 (segfault in pdo_pgsql bindValue() when no parameters are 
  643.   defined). (Tony)
  644. - Fixed bug #36721 (The SoapServer is not able to send a header that it didn't 
  645.   receive). (Dmitry)
  646. - Fixed bug #36697 (Transparency is lost when using imagecreatetruecolor).
  647.   (Pierre)
  648. - Fixed bug #36689 (Removed arbitrary limit on the length of syslog messages).
  649.   (Ilia)
  650. - Fixed bug #36656 (http_build_query generates invalid URIs due to use of 
  651.   square brackets). (Mike)
  652. - Fixed bug #36638 (strtotime() returns false when 2nd argument < 1). (Derick)
  653. - Fixed bug #36629 (SoapServer::handle() exits on SOAP faults). (Dmitry)
  654. - Fixed bug #36625 (pg_trace() does not work). (iakio at mono-space dot net)
  655. - Fixed bug #36614 (Segfault when using Soap). (Dmitry)
  656. - Fixed bug #36611 (assignment to SimpleXML object attribute changes argument 
  657.   type to string). (Tony)
  658. - Fixed bug #36606 (pg_query_params() changes arguments type to string). (Tony)
  659. - Fixed bug #36599 (DATE_W3C format constant incorrect). (Derick)
  660. - Fixed bug #36575 (SOAP: Incorrect complex type instantiation with 
  661.   hierarchies). (Dmitry)
  662. - Fixed bug #36572 (Added PDO::MYSQL_ATTR_DIRECT_QUERY constant that should 
  663.   be set when executing internal queries like "show master status" via MySQL). 
  664.   (Ilia)
  665. - Fixed bug #36568 (memory_limit setting on win32 has no effect). (Dmitry)
  666. - Fixed bug #36513 (comment will be outputted in last line). (Dmitry)
  667. - Fixed bug #36510 (strtotime() fails to parse date strings with tabs).
  668.   (Ilia, Derick)
  669. - Fixed bug #36459 (Incorrect adding PHPSESSID to links, which contains \r\n).
  670.   (Ilia)
  671. - Fixed bug #36458 (sleep() accepts negative values). (Ilia)
  672. - Fixed bug #36436 (DBA problem with Berkeley DB4). (Marcus)
  673. - Fixed bug #36434 (Improper resolution of declaring class name of an 
  674.   inherited property). (Ilia)
  675. - Fixed bug #36420 (segfault when access result->num_rows after calling 
  676.   result->close()). (Ilia,Tony)
  677. - Fixed bug #36403 (oci_execute() no longer supports OCI_DESCRIBE_ONLY). (Tony)
  678. - Fixed bug #36400 (Custom 5xx error does not return correct HTTP response error
  679.   code). (Tony)
  680. - Fixed bug #36396 (strtotime() fails to parse dates in dd-mm-yyyy format).
  681.   (Derick)
  682. - Fixed bug #36388 (ext/soap crashes when throwing exception and session 
  683.   persistence). (David)
  684. - Fixed bug #36382 (PDO/PgSQL's getColumnMeta() crashes). (Derick)
  685. - Fixed bug #36359 (splFileObject::fwrite() doesn't write when no data 
  686.   length specified). (Tony)
  687. - Fixed bug #36351 (parse_url() does not parse numeric paths properly). (Ilia)
  688. - Fixed bug #36345 (PDO/MySQL problem loading BLOB over 1MB). (Ilia)
  689. - Fixed bug #36337 (ReflectionProperty fails to return correct visibility). 
  690.   (Ilia)
  691. - Fixed bug #36334 (Added missing documentation about realpath cache INI 
  692.   settings). (Ilia)
  693. - Fixed bug #36308 (ReflectionProperty::getDocComment() does not reflect 
  694.   extended class commentary). (Ilia)
  695. - Fixed bug #36306 (crc32() differ on 32-bit and 64-bit platforms)
  696.   (anight@eyelinkmedia dot com, Pierre)
  697. - Fixed bug #36303 (foreach on error_zval produces segfault). (Dmitry)
  698. - Fixed bug #36295 (typo in SplFileObject::flock() parameter name). (Tony)
  699. - Fixed bug #36287 (Segfault with SplFileInfo conversion). (Marcus)
  700. - Fixed bug #36283 (SOAPClient Compression Broken). (Dmitry)
  701. - Fixed bug #36268 (Object destructors called even after fatal errors). (Dmitry)
  702. - Fixed bug #36258 (SplFileObject::getPath() may lead to segfault). (Tony)
  703. - Fixed bug #36250 (PHP causes ORA-07445 core dump in Oracle server 9.2.x).
  704.   (Tony)
  705. - Fixed bug #36242 (Possible memory corruption in stream_select()). (Tony)
  706. - Fixed bug #36235 (ocicolumnname returns false before a successful fetch).
  707.   (Tony)
  708. - Fixed bug #36226 (Inconsistent handling when passing potential arrays). 
  709.   (Dmitry)
  710. - Fixed bug #36224 (date(DATE_ATOM) gives wrong results).
  711.   (Derick, Hannes Magnusson)
  712. - Fixed bug #36222 (errorInfo in PDOException is always NULL). (Ilia)
  713. - Fixed bug #36208 (symbol namespace conflicts using bundled gd). (Jakub Moc)
  714. - Fixed bug #36205 (Memory leaks on duplicate cookies). (Dmitry)
  715. - Fixed bug #36185 (str_rot13() crash on non-string parameter). (Pierre)
  716. - Fixed bug #36176 (PDO_PGSQL - PDO::exec() does not return number of rows 
  717.   affected by the operation). (Ilia)
  718. - Fixed bug #36158 (SIGTERM is not handled correctly when running as a 
  719.   FastCGI server). (Dmitry)
  720. - Fixed bug #36152 (problems with curl+ssl and pgsql+ssl in same PHP). (Mike)
  721. - Fixed bug #36148 (unpack("H*hex", $data) is adding an extra character to 
  722.   the end of the string). (Ilia)
  723. - Fixed bug #36134 (DirectoryIterator constructor failed to detect empty 
  724.   directory names). (Ilia)
  725. - Fixed bug #36113 (Reading records of unsupported type causes segfault).
  726.   (Tony)
  727. - Fixed bug #36096 (oci_result() returns garbage after oci_fetch() failed).
  728.   (Tony)
  729. - Fixed bug #36083 (SoapClient waits for responses on one-way operations).
  730.   (Dmitry)
  731. - Fixed bug #36071 (Engine Crash related with 'clone'). (Dmitry)
  732. - Fixed bug #36055 (possible OCI8 crash in multi-threaded environment). (Tony)
  733. - Fixed bug #36046 (parse_ini_file() miscounts lines in multi-line values).
  734.   (Ilia)
  735. - Fixed bug #36038 (ext/hash compile failure on Mac OSX). (Tony)
  736. - Fixed bug #36037 (heredoc adds extra line number). (Dmitry)
  737. - Fixed bug #36016 (realpath cache memleaks). (Dmitry, Nuno)
  738. - Fixed bug #36011 (Strict errormsg wrong for call_user_func() and the likes).
  739.   (Marcus)
  740. - Fixed bug #36010 (Segfault when re-creating and re-executing statements with 
  741.   bound parameters). (Tony)
  742. - Fixed bug #36006 (Problem with $this in __destruct()). (Dmitry)
  743. - Fixed bug #35999 (recursive mkdir() does not work with relative path 
  744.   like "foo/bar"). (Tony)
  745. - Fixed bug #35998 (SplFileInfo::getPathname() returns unix style filenames 
  746.   in win32). (Marcus)
  747. - Fixed bug #35988 (Unknown persistent list entry type in module shutdown).
  748.   (Dmitry)
  749. - Fixed bug #35954 (Fatal com_exception casting object). (Rob)
  750. - Fixed bug #35900 (stream_select() should warning when tv_sec is negative).
  751.   (Ilia)
  752. - Fixed bug #35785 (SimpleXML causes memory read error zend engine). (Marcus)
  753. - Fixed bug #34272 (empty array onto COM object blows up). (Rob)
  754. - Fixed bug #33292 (apache_get_modules() crashes on Windows). (Edin)
  755. - Fixed bug #29476 (sqlite_fetch_column_types() locks the database forever). 
  756.   (Ilia)
  757.  
  758. 12 Jan 2006, PHP 5.1.2
  759. - Updated libsqlite in ext/sqlite to 2.8.17. (Ilia)
  760. - Updated libsqlite in ext/pdo_sqlite to 3.2.8. (Ilia)
  761. - Updated to libxml2-2.6.22 and libxslt-1.1.15 in the win32 bundle. (Rob)
  762. - Added new extensions: (Ilia, Wez)
  763.   . XMLWriter
  764.   . Hash
  765. - Added PNG compression support to GD extension. (Pierre)
  766. - Added reflection constants as class constants. (Johannes)
  767. - Added --enable-gcov configure option to enable C-level code coverage.
  768.   (John, Jani, Ilia, Marcus)
  769. - Added missing support for 'B' format identifier to date() function. (Ilia)
  770. - Changed reflection to be an extension. (Marcus)
  771. - Improved SPL extension: (Marcus)
  772.   . Added class SplFileInfo as root class for DirectoryIterator and 
  773.     SplFileObject
  774.   . Added SplTempFileObject
  775. - Improved SimpleXML extension: (Marcus)
  776.   . Fixed memleaks
  777.   . Fixed var_dump()
  778.   . Fixed isset/empty/(bool) behavior
  779.   . Fixed iterator edge cases
  780.   . Added methods getNamespaces(), getDocNamespaces()
  781. - Upgraded pear to version 1.4.6. (Greg)
  782. - Added constants for libxslt and libexslt versions: LIBXSLT_VERSION,
  783.   LIBXSLT_DOTTED_VERSION, LIBEXSLT_VERSION and LIBEXSLT_DOTTED_VERSION. (Pierre)
  784. - Fixed possible crash in apache_getenv()/apache_setenv() on invalid parameters.
  785.   (Ilia)
  786. - Changed errors to warnings in imagecolormatch(). (Pierre)
  787. - Fixed segfault/leak in imagecolormatch(). (Pierre)
  788. - Fixed small leak in mysqli_stmt_fetch() when bound variable was empty string.
  789.   (Andrey)
  790. - Fixed prepared statement name conflict handling in PDO_PGSQL. (Thies, Ilia)
  791. - Fixed memory corruption when PDO::FETCH_LAZY mode is being used. (Ilia)
  792. - Fixed possible leaks in imagecreatefromstring() with invalid data. (Pierre)
  793. - Fixed possible memory corruption inside mb_strcut(). (Ilia)
  794. - Fixed possible header injection by limiting each header to a single line.
  795.   (Ilia)
  796. - Fixed possible XSS inside error reporting functionality. (Ilia)
  797. - Fixed many bugs in OCI8. (Tony)
  798. - Fixed crash and leak in mysqli when using 4.1.x client libraries and
  799.   connecting to 5.x server. (Andrey)
  800. - Fixed bug #35916 (Duplicate calls to stream_bucket_append() lead to a crash).
  801.   (Ilia)
  802. - Fixed bug #35908 (curl extension uses undefined GCRY_THREAD_OPTIONS_USER).
  803.   (Ilia)
  804. - Fixed bug #35907 (PDO_OCI uses hardcoded lib path $ORACLE_HOME/lib). (Tony)
  805. - Fixed bug #35887 (wddx_deserialize not parsing dateTime fields properly).
  806.   (Derick)
  807. - Fixed bug #35885 (strtotime("NOW") no longer works). (Derick)
  808. - Fixed bug #35821 (array_map() segfaults when exception is throwed from
  809.   the callback). (Tony)
  810. - Fixed bug #35817 (unpack() does not decode odd number of hexadecimal values).
  811.   (Ilia)
  812. - Fixed bug #35797 (segfault on PDOStatement::execute() with 
  813.   zend.ze1_compatibility_mode = On). (Tony, Ilia)
  814. - Fixed bug #35781 (stream_filter_append() can cause segfault). (Tony)
  815. - Fixed bug #35760 (sybase_ct doesn't compile on Solaris using old gcc). (Tony)
  816. - Fixed bug #35759 (mysqli_stmt_bind_result() makes huge allocation when
  817.   column empty). (Andrey)
  818. - Fixed bug #35751 (using date with a timestamp makes httpd segfault). (Derick)
  819. - Fixed bug #35740 (memory leak when including a directory). (Tony)
  820. - Fixed bug #35730 (ext/mssql + freetds: Use correct character encoding
  821.   and allow setting it). (Frank)
  822. - Fixed bug #35723 (xmlrpc_introspection.c fails compile per C99 std). (Jani)
  823. - Fixed bug #35720 (A final constructor can be overwritten). (Marcus)
  824. - Fixed bug #35713 (getopt() returns array with numeric strings when passed 
  825.   options like '-1'). (Tony)
  826. - Fixed bug #35705 (strtotime() fails to parse soap date format without TZ).
  827.   (Ilia)
  828. - Fixed bug #35699 (date() can't handle leap years before 1970). (Derick)
  829. - Fixed bug #35694 (Improved error message for invalid fetch mode). (Ilia)
  830. - Fixed bug #35692 (iconv_mime_decode() segmentation fault; with libiconv 
  831.   only). (Tony)
  832. - Fixed bug #35690 (pack() tries to allocate huge memory block when packing 
  833.   float values to strings). (Tony)
  834. - Fixed bug #35669 (imap_mail_compose() crashes with 
  835.   multipart-multiboundary-email). (Ilia)
  836. - Fixed bug #35660 (AIX TZ variable format not understood, yields UTC
  837.   timezone). (Derick)
  838. - Fixed bug #35655 (whitespace following end of heredoc is lost). (Ilia)
  839. - Fixed bug #35630 (strtotime() crashes on certain relative identifiers).
  840.   (Ilia)
  841. - Fixed bug #35629 (crash in http:// wrapper on multiple redirects). (Ilia)
  842. - Fixed bug #35624 (strtotime() does not handle 3 character weekdays). (Ilia)
  843. - Fixed bug #35612 (iis6 Access Violation crash). (Dmitry, alacn.uhahaa)
  844. - Fixed bug #35594 (Multiple calls to getopt() may result in a crash).
  845.   (rabbitt at gmail dot com, Ilia)
  846. - Fixed bug #35571 (Fixed crash in Apache 2 SAPI when more then one php 
  847.   script is loaded via SSI include). (Ilia)
  848. - Fixed bug #35570 (segfault when re-using soap client object). (Dmitry)
  849. - Fixed bug #35558 (mktime() interpreting 3 digit years incorrectly). (Ilia)
  850. - Fixed bug #35543 (php crash when calling non existing method of a class
  851.   that extends PDO). (Tony)
  852. - Fixed bug #35539 (typo in error message for ErrorException). (Tony)
  853. - FIxed bug #35536 (mysql_field_type() doesn't handle NEWDECIMAL). (Tony)
  854. - Fixed bug #35517 (mysql_stmt_fetch returns NULL on data truncation). (Georg)
  855. - Fixed bug #35509 (string constant as array key has different behavior inside
  856.   object). (Dmitry)
  857. - Fixed bug #35508 (PDO fails when unknown fetch mode specified). (Tony)
  858. - Fixed bug #35499 (strtotime() does not handle whitespace around the date 
  859.   string). (Ilia)
  860. - Fixed bug #35496 (Crash in mcrypt_generic()/mdecrypt_generic() without 
  861.   proper init). (Ilia)
  862. - Fixed bug #35490 (socket_sendto() unable to handle IPv6 addresses). (Tony)
  863. - Fixed bug #35461 (Ming extension fails to compile with ming 0.3beta1). (Jani)
  864. - Fixed bug #35437 (Segfault or Invalid Opcode 137/1/4). (Dmitry)
  865. - Fixed bug #35470 (Assigning global using variable name from array doesn't
  866.   function). (Dmitry)
  867. - Fixed bug #35456 (+ 1 [time unit] format did not work). (Ilia)
  868. - Fixed bug #35447 (xml_parse_into_struct() chokes on the UTF-8 BOM). (Rob)
  869. - Fixed bug #35431 (PDO crashes when using LAZY fetch with fetchAll). (Wez)
  870. - Fixed bug #35430 (PDO crashes on incorrect FETCH_FUNC use). (Tony)
  871. - Fixed bug #35427 (str_word_count() handles '-' incorrectly). (Ilia)
  872. - Fixed bug #35425 (idate() function ignores timezone settings). (Ilia)
  873. - Fixed bug #35422 (strtotime() does not parse times with UTC as timezone).
  874.   (Ilia)
  875. - Fixed bug #35414 (strtotime() no longer works with ordinal suffix). (Ilia)
  876. - Fixed bug #35410 (wddx_deserialize() doesn't handle large ints as keys 
  877.   properly). (Ilia)
  878. - Fixed bug #35409 (undefined reference to 'rl_completion_matches'). (Jani)
  879. - Fixed bug #35399 (Since fix of bug #35273 SOAP decoding of
  880.   soapenc:base64binary fails). (Dmitry)
  881. - Fixed bug #35393 (changing static protected members from outside the class,
  882.   one more reference issue). (Dmitry)
  883. - Fixed bug #35381 (ssl library is not initialized properly). (Alan)
  884. - Fixed bug #35377 (PDO_SQLITE: undefined reference to "fdatasync").
  885.   (Nuno, Jani)
  886. - Fixed bug #35373 (HP-UX "alias not allowed in this configuration"). (Dmitry)
  887. - Fixed bug #35288 (iconv() function defined as libiconv()). (Nuno)
  888. - Fixed bug #35103 (mysqli handles bad unsigned (big)int incorrectly).(Andrey)
  889. - Fixed bug #35062 (socket_read() produces warnings on non blocking sockets).
  890.   (Nuno, Ilia)
  891. - Fixed bug #35028 (SimpleXML object fails FALSE test). (Marcus)
  892. - Fixed bug #34729 (Crash in ZTS mode under Apache). (Dmitry, Zeev) 
  893. - Fixed bug #34429 (Output buffering cannot be turned off with FastCGI).
  894.   (Dmitry, Ilya)
  895. - Fixed bug #34359 (Possible crash inside fopen http wrapper). (Ilia,Sara,Nuno)
  896. - Fixed bug #33789 (Many Problems with SunFuncs). (Derick)
  897. - Fixed bug #33671 (sun_rise and sun_set don't return a GMT timestamp if one
  898.   passes an offset). (Derick)
  899. - Fixed bug #32820 (date_sunrise and date_sunset don't handle GMT offset
  900.   well). (Derick)
  901. - Fixed bug #31347 (is_dir and is_file (incorrectly) return true for any string 
  902.   greater then 255 characters). (Nuno,Ilia)
  903. - Fixed bug #30937 (date_sunrise() & date_sunset() don't handle endless
  904.   day/night at high latitudes). (Derick)
  905. - Fixed bug #30760 (Remove MessageBox on win32 for E_CORE errors if 
  906.   display_startup_error is off). (Ilia)
  907. - Fixed bug #29955 (mb_strtoupper() / lower() broken with Turkish encoding).
  908.   (Rui)
  909. - Fixed bug #28899 (mb_substr() and substr() behave differently when
  910.   "mbstring.func_overload" is enabled). (Rui)
  911. - Fixed bug #27678 (number_format() crashes with large numbers). (Marcus)
  912.  
  913. 28 Nov 2005, PHP 5.1.1
  914. - Disabled native date class to prevent pear::date conflict. (Ilia)
  915. - Changed reflection constants be both PHP and class constants. (Johannes)
  916. - Added an additional field $frame['object'] to the result array of
  917.   debug_backtrace() that contains a reference to the respective object when the
  918.   frame was called from an object. (Sebastian)
  919. - Fixed bug #35423 (RecursiveDirectoryIterator doesnt appear to recurse with 
  920.   RecursiveFilterIterator). (Marcus)
  921. - Fixed bug #35413 (Removed -dev flag from Zend Engine version). (Ilia)
  922. - Fixed bug #35411 (Regression with \{$ handling). (Ilia)
  923. - Fixed bug #35406 (eval hangs when evall'ed code ends with comment w/o 
  924.   newline). (Marcus)
  925. - Fixed bug #35391 (pdo_mysql::exec does not return number of affected rows). 
  926.   (Tony)
  927. - Fixed bug #35382 (Comment in end of file produces fatal error). (Ilia)
  928. - Fixed bug #35360 (exceptions in interactive mode (php -a) may cause crash).
  929.   (Dmitry)
  930. - Fixed bug #35358 (Incorrect error messages for PDO class constants). (Ilia)
  931. - Fixed bug #35338 (pdo_pgsql does not handle binary bound params). (Wez)
  932. - Fixed bug #35316 (Application exception trying to create COM object). (Rob)
  933. - Fixed bug #35170 (PHP_AUTH_DIGEST differs under Apache 1.x and 2.x). (Ilia)
  934.  
  935. 24 Nov 2005, PHP 5.1
  936. - Added support for class constants and static members for internal classes. 
  937.   (Dmitry, Michael Wallner)
  938. - Added "new_link" parameter to mssql_connect() (Bug #34369). (Frank)
  939. - Added missing safe_mode checks for image* functions and cURL. (Ilia)
  940. - Added missing safe_mode/open_basedir checks for file uploads. (Ilia)
  941. - Added PDO_MYSQL_ATTR_USE_BUFFERED_QUERY parameter for pdo_mysql. (Ilia)
  942. - Added date_timezone_set() function to set the timezone that the date 
  943.   functions will use. (Derick)
  944. - Added pg_fetch_all_columns() function to fetch all values of a column from a 
  945.   result cursor. (Ilia)
  946. - Added support for LOCK_EX flag for file_put_contents(). (Ilia)
  947. - Added bindto socket context option. (Ilia)
  948. - Added offset parameter to the stream_copy_to_stream() function. (Ilia)
  949. - Added offset & length parameters to substr_count() function. (Ilia)
  950. - Added man pages for "phpize" and "php-config" scripts. (Jakub Vrana)
  951. - Added support for .cc files in extensions. (Brian)
  952. - Added PHP_INT_MAX and PHP_INT_SIZE as predefined constants. (Andrey)
  953. - Added user opcode API that allow overloading of opcode handlers. (Dmitry)
  954. - Added an optional remove old session parameter to session_regenerate_id().
  955.   (Ilia)
  956. - Added array type hinting. (Dmitry)
  957. - Added the tidy_get_opt_doc() function to return documentation for 
  958.   configuration options in tidy. (Patch by: nlopess@php.net)
  959. - Added support for .cc files in extensions. (Brian)
  960. - Added imageconvolution() function which can be used to apply a custom 3x3 
  961.   matrix convolution to an image. (Pierre)
  962. - Added optional first parameter to XsltProcessor::registerPHPFunctions to 
  963.   only allow certain functions to be called from XSLT. (Christian)
  964. - Added the ability to override the autotools executables used by the 
  965.   buildconf script via the PHP_AUTOCONF and PHP_AUTOHEADER environmental 
  966.   variables. (Jon)
  967. - Added several new functions to support the PostgreSQL v3 protocol introduced 
  968.   in PostgreSQL 7.4. (Christopher)
  969.   . pg_transaction_status() - in-transaction status of a database connection.
  970.   . pg_query_params() - execution of parameterized queries.
  971.   . pg_prepare() - prepare named queries.
  972.   . pg_execute() - execution of named prepared queries.
  973.   . pg_send_query_params() - async equivalent of pg_query_params().
  974.   . pg_send_prepare() - async equivalent of pg_prepare().
  975.   . pg_send_execute() - async equivalent of pg_execute().
  976.   . pg_result_error_field() - highly detailed error information, most 
  977.     importantly 
  978.     the SQLSTATE error code.
  979.   . pg_set_error_verbosity() - set verbosity of errors.
  980. - Added optional fifth parameter "count" to preg_replace_callback() and 
  981.   preg_replace() to count the number of replacements made. FR #32275. (Andrey)
  982. - Added optional third parameter "charlist" to str_word_count() which contains 
  983.   characters to be considered as word part. FR #31560. (Andrey, Ilia)
  984. - Added interface Serializable. (Stanislav, Marcus)
  985. - Added pg_field_type_oid() PostgreSQL function. (mauroi at digbang dot com)
  986. - Added zend_declare_property_...() and zend_update_property_...() API 
  987.   functions for bool, double and binary safe strings. (Hartmut)
  988. - Added possibility to access INI variables from within .ini file. (Andrei)
  989. - Added variable $_SERVER['REQUEST_TIME'] containing request start time.
  990.   (Ilia)
  991. - Added optional float parameter to gettimeofday(). (Ilia)
  992. - Added apache_reset_timeout() Apache1 function. (Rasmus)
  993. - Added sqlite_fetch_column_types() 3rd argument for arrays. (Ilia)
  994. - Added optional offset parameter to stream_get_contents() and 
  995.   file_get_contents(). (Ilia)
  996. - Added optional maxlen parameter to file_get_contents(). (Ilia)
  997. - Added SAPI hook to get the current request time. (Rasmus)
  998. - Added new functions: 
  999.   . array_diff_key() (Andrey)
  1000.   . array_diff_ukey() (Andrey)
  1001.   . array_intersect_key() (Christiano Duarte)
  1002.   . array_intersect_ukey() (Christiano Duarte)
  1003.   . array_product() (Andrey)
  1004.   . DomDocumentFragment::appendXML() (Christian)
  1005.   . fputcsv() (David Sklar)
  1006.   . htmlspecialchars_decode() (Ilia)
  1007.   . inet_pton() (Sara)
  1008.   . inet_ntop() (Sara)
  1009.   . mysqli::client_info property (Georg)
  1010.   . posix_access() (Magnus)
  1011.   . posix_mknod() (Magnus)
  1012.   . SimpleXMLElement::registerXPathNamespace() (Christian)
  1013.   . stream_context_get_default() (Wez)
  1014.   . stream_socket_enable_crypto() (Wez)
  1015.   . stream_wrapper_unregister() (Sara)
  1016.   . stream_wrapper_restore() (Sara)
  1017.   . stream_filter_remove() (Sara)
  1018.   . time_sleep_until() (Ilia)
  1019. - Added DomDocument::$recover property for parsing not well-formed XML 
  1020.   Documents. (Christian)   
  1021. - Added Cursor support for MySQL 5.0.x in mysqli (Georg)
  1022. - Added proxy support to ftp wrapper via http. (Sara)
  1023. - Added MDTM support to ftp_url_stat. (Sara)
  1024. - Added zlib stream filter support. (Sara)
  1025. - Added bz2 stream filter support. (Sara)
  1026. - Added max_redirects context option that specifies how many HTTP 
  1027.   redirects to follow. (Ilia)
  1028. - Added support of parameter=>value arrays to 
  1029.   xsl_xsltprocessor_set_parameter(). (Tony)
  1030.  
  1031. - PHP extension loading mechanism with support for module 
  1032.   dependencies and conflicts. (Jani, Dmitry) 
  1033. - Improved interactive mode of PHP CLI (php -a). (Johannes, Marcus)
  1034. - Improved performance of:
  1035.   . general execution/compilation. (Andi, Thies, Sterling, Dmitry, Marcus)
  1036.   . switch() statement. (Dmitry)
  1037.   . several array functions. (Marcus)
  1038.   . virtual path handling by adding a realpath() cache. (Andi)
  1039.   . variable fetches. (Andi)
  1040.   . magic method invocations. (Marcus)
  1041. - Improved support for embedded server in mysqli. (Georg)
  1042. - Improved mysqli extension. (Georg)
  1043.   . added constructor for mysqli_stmt and mysqli_result classes
  1044.   . added new function mysqli_get_charset()
  1045.   . added new function mysqli_set_charset()
  1046.   . added new class mysqli_driver
  1047.   . added new class mysqli_warning
  1048.   . added new class mysqli_exception 
  1049.   . added new class mysqli_sql_exception
  1050. - Improved SPL extension. (Marcus)
  1051.   . Moved RecursiveArrayIterator from examples into extension
  1052.   . Moved RecursiveFilterIterator from examples into extension
  1053.   . Added SplObjectStorage
  1054.   . Made all SPL constants class constants
  1055.   . Renamed CachingRecursiveIterator to RecursiveCachingIterator to follow 
  1056.     Recursive<*>Iterator naming scheme.
  1057.   . added standard hierarchy of Exception classes
  1058.   . added interface Countable
  1059.   . added interfaces Subject and SplObserver
  1060.   . added spl_autoload*() functions
  1061.   . converted several 5.0 examples into c code
  1062.   . added class SplFileObject
  1063.   . added possibility to use a string with class_parents() and
  1064.     class_implements(). (Andrey)
  1065.  
  1066. - Changed type hints to allow "null" as default value for class and array. 
  1067.   (Marcus, Derick, Dmitry)
  1068. - Changed SQLite extension to be a shared module in Windows distribution.
  1069.   (Edin)
  1070. - Changed "instanceof" and "catch" operators, is_a() and is_subclass_of() 
  1071.   functions to not call __autoload(). (Dmitry)
  1072. - Changed sha1_file() and md5_file() functions to use streams instead of low
  1073.   level IO. (Uwe)
  1074. - Changed abstract private methods to be not allowed anymore. (Stas)
  1075. - Changed stream_filter_(ap|pre)pend() to return resource. (Sara)
  1076. - Changed mysqli_exception and sqlite_exception to use RuntimeException as 
  1077.   base if SPL extension is present. (Georg, Marcus)
  1078.  
  1079. - Upgraded bundled libraries:
  1080.   . PCRE library to version 6.2. (Andrei)
  1081.   . SQLite 3 library in ext/pdo_sqlite to 3.2.7. (Ilia)
  1082.   . SQLite 2 library in ext/sqlite to 2.8.16. (Ilia)
  1083. - Upgraded bundled libraries in Windows distribution. (Edin)
  1084.   . zlib 1.2.3
  1085.   . curl 7.14.0
  1086.   . openssl 0.9.8
  1087.   . ming 0.3b
  1088.   . libpq (PostgreSQL) 8.0.1
  1089.  
  1090. - Implemented feature request #33452 (Year belonging to ISO week). (Derick)
  1091. - Allowed return by reference from internal functions. (Marcus, Andi, Dmitry)
  1092. - Rewrote strtotime() with support for timezones and many new formats. 
  1093.   Implements feature requests #21399, #26694, #28088, #29150, #29585 and 
  1094.   #29595. (Derick)
  1095.  
  1096. - Moved extensions to PECL:
  1097.   . ext/cpdf        (Tony, Derick)
  1098.   . ext/dio         (Jani, Derick)
  1099.   . ext/fam         (Jani, Derick)
  1100.   . ext/ingres_ii   (Jani, Derick)
  1101.   . ext/mnogosearch (Jani, Derick)
  1102.   . ext/w32api      (Jani, Derick)
  1103.   . ext/yp          (Jani, Derick)
  1104.   . ext/mcve        (Jani, Derick, Pierre)
  1105.   . ext/oracle      (Jani, Derick)
  1106.   . ext/ovrimos     (Jani, Derick, Pierre)
  1107.   . ext/pfpro       (Jani, Derick, Pierre)
  1108.   . ext/dbx         (Jani, Derick)
  1109.   . ext/ircg        (Jani, Derick)
  1110.  
  1111. - Removed php_check_syntax() function which never worked properly. (Ilia)
  1112. - Removed garbage manager in Zend Engine which results in more aggressive 
  1113.   freeing of data. (Dmitry, Andi)
  1114.  
  1115. - Fixed "make test" to work for phpized extensions. (Hartmut, Jani)
  1116. - Fixed Apache 2 regression with sub-request handling on non-linux systems.
  1117.   (Ilia, Tony)
  1118. - Fixed PDO shutdown problem (possible infinite loop running rollback on 
  1119.   shutdown). (Wez)
  1120. - Fixed PECL bug #3714 (PDO: beginTransaction doesn't work if you're in 
  1121.   auto-commit mode). (Wez)
  1122. - Fixed ZTS destruction. (Marcus)
  1123. - Fixed __get/__set to allow recursive calls for different properties. (Dmitry)
  1124. - Fixed a bug where stream_get_meta_data() did not return the "uri" element 
  1125.   for files opened with tmpname(). (Derick)
  1126. - Fixed a problem with SPL iterators aggregating the inner iterator. (Marcus)
  1127. - Fixed an error in mysqli_fetch_fields (returned NULL instead of an array 
  1128.   when row number > field_count). (Georg)
  1129. - Fixed bug in mysql::client_version(). (Georg)
  1130. - Fixed bug in mysqli extension with unsigned int(11) being represented as 
  1131.   signed integer in PHP instead of string in 32bit systems. (Andrey)
  1132. - Fixed bug with $HTTP_RAW_POST_DATA not getting set. (Brian)
  1133. - Fixed crash inside stream_get_line() when length parameter equals 0. (Ilia)
  1134. - Fixed ext/mysqli to allocate less memory when fetching bound params of type
  1135.   (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey)
  1136. - Fixed extension initialization to respect dependencies between extensions.
  1137.   (Wez)
  1138. - Fixed failing queries (FALSE returned) with mysqli_query() on 64 bit systems.
  1139.   (Andrey)
  1140. - Fixed fgetcsv() and fputcsv() inconsistency. (Dmitry)
  1141. - Fixed inheritance check to control return by reference and pass by 
  1142.   reference correctly (ArrayAccess can no longer support references correctly).
  1143.   (Marcus, Andi, Dmitry)
  1144. - Fixed initializing and argument checking for posix_mknod(). (Derick)
  1145. - Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey)
  1146. - Fixed memory corruption in pg_copy_from() in case the as_null parameter was
  1147.   passed. (Derick)
  1148. - Fixed memory corruption in stristr(). (Derick)
  1149. - Fixed possible GLOBALS variable override when register_globals are ON.
  1150.   (Ilia, Stefan)
  1151. - Fixed possible INI setting leak via virtual() in Apache 2 sapi. (Ilia)
  1152. - Fixed possible register_globals toggle via parse_str(). (Ilia, Stefan)
  1153. - Fixed potential GLOBALS overwrite via import_request_variables() and 
  1154.   possible crash and/or memory corruption. (Ilia)
  1155. - Fixed segfaults when CURL callback functions throw exception. (Tony)
  1156. - Fixed support for shared extensions on AIX. (Dmitry)
  1157. - Fixed bug #35342 (isset(DOMNodeList->length) returns false). (Rob)
  1158. - Fixed bug #35341 (Fix for bug #33760 breaks build with older curl). (Tony)
  1159. - Fixed bug #35336 (crash on PDO::FETCH_CLASS + __set()). (Tony)
  1160. - Fixed bug #35303 (PDO prepare() crashes with invalid parameters). (Ilia)
  1161. - Fixed bug #35293 (PDO segfaults when using persistent connections). (Tony)
  1162. - Fixed bug #35278 (Multiple virtual() calls crash Apache 2 php module). (Ilia)
  1163. - Fixed bug #35273 (Error in mapping soap - java types). (Dmitry)
  1164. - Fixed bug #35249 (compile failure when ext/readline is compiled as shared).
  1165.   (Jani)
  1166. - Fixed bug #35248 (sqlite_query() doesn't set error_msg when return value is 
  1167.   being used). (Ilia) 
  1168. - Fixed bug #35243 (php_mblen() crashes when compiled with thread-safety on 
  1169.   Linux). (Patch: shulmanb at il dot ibm dot com, Jani)
  1170. - Fixed bug #35239 (Objects can lose references). (Dmitry)
  1171. - Fixed bug #35229 (call_user_func() crashes when argument_stack is nearly 
  1172.   full). (Dmitry)
  1173. - Fixed bug #35197 (Destructor is not called). (Tony)
  1174. - Fixed bug #35179 (tokenizer extension needs T_HALT_COMPILER). (Greg)
  1175. - Fixed bug #35176 (include()/require()/*_once() produce wrong error messages 
  1176.   about main()). (Dmitry)
  1177. - Fixed bug #35147 (__HALT_COMPILER() breaks with --enable-zend-multibyte).
  1178.   (Dmitry, Moriyoshi)
  1179. - Fixed bug #35143 (gettimeofday() ignores current time zone). (Derick)
  1180. - Fixed bug #35142 (SOAP Client/Server Complex Object Support). (Dmitry)
  1181. - Fixed bug #35135 (PDOStatment without related PDO object may crash). (Ilia)
  1182. - Fixed bug #35091 (SoapClient leaks memory). (Dmitry)
  1183. - Fixed bug #35079 (stream_set_blocking(true) toggles, not enables blocking).
  1184.   (askalski at gmail dot com, Tony)
  1185. - Fixed bug #35078 (configure does not find ldap_start_tls_s). (Jani)
  1186. - Fixed bug #35046 (phpinfo() uses improper css enclosure). (Ilia)
  1187. - Fixed bugs #35022, #35019 (Regression in the behavior of key() and 
  1188.   current() functions). (Ilia)
  1189. - Fixed bug #35017 (Exception thrown in error handler may cause unexpected 
  1190.   behavior). (Dmitry)
  1191. - Fixed bug #35014 (array_product() always returns 0). (Ilia)
  1192. - Fixed bug #35009 (ZTS: Persistent resource destruct crashes when extension 
  1193.   is compiled as shared). (Dmitry)
  1194. - Fixed bug #34996 (ImageTrueColorToPalette() crashes when ncolors is zero).
  1195.   (Tony)
  1196. - Fixed bug #34982 (array_walk_recursive() modifies elements outside function
  1197.   scope). (Dmitry)
  1198. - Fixed bug #34977 (Compile failure on MacOSX due to use of varargs.h). (Tony)
  1199. - Fixed bug #34968 (bz2 extension fails on to build on some win32 setups).
  1200.  (Ilia)
  1201. - Fixed bug #34965 (tidy is not binary safe). (Mike)
  1202. - Fixed bug #34957 (PHP doesn't respect ACLs for access checks). (Wez)
  1203. - Fixed bug #34950 (Unable to get WSDL through proxy). (Dmitry)
  1204. - Fixed bug #34938 (dns_get_record() doesn't resolve long hostnames and 
  1205.   leaks). (Tony)
  1206. - Fixed bug #34905 (Digest authentication does not work with Apache 1). (Ilia)
  1207. - Fixed bug #34902 (mysqli::character_set_name() - undefined method). (Tony)
  1208. - Fixed bug #34899 (Fixed sqlite extension compile failure). (Ilia)
  1209. - Fixed bug #34893 (PHP5.1 overloading, Cannot access private property).
  1210.   (Dmitry)
  1211. - Fixed bug #34884 (Possible crash in ext/sqlite when sqlite.assoc_case is 
  1212.   being used). (Tony, Ilia)
  1213. - Fixed bug #34879 (str_replace, array_map corrupt negative array indexes on 
  1214.   64-bit platforms). (Dmitry)
  1215. - Fixed bug #34873 (Segmentation Fault on foreach in object). (Dmitry)
  1216. - Fixed bug #34856 (configure fails to detect libiconv's type). (Tony)
  1217. - Fixed bug #34855 (ibase_service_attach() segfault on AMD64). 
  1218.   (irie at gmx dot de, Tony)
  1219. - Fixed bug #34851 (SO_RECVTIMEO and SO_SNDTIMEO socket options expect 
  1220.   integer parameter on Windows). (Mike)
  1221. - Fixed bug #34850 (--program-suffix and --program-prefix not included in 
  1222.   man page names). (Jani)
  1223. - Fixed bug #34821 (zlib encoders fail on widely varying binary data on 
  1224.   windows). (Mike, Ilia)
  1225. - Fixed bug #34818 (several functions crash when invalid mysqli_link object 
  1226.   is passed). (Tony)
  1227. - Fixed bug #34810 (mysqli::init() and others use wrong $this pointer without 
  1228.   checks). (Tony)
  1229. - Fixed bug #34809 (FETCH_INTO in PDO crashes without a destination object).
  1230.   (Ilia)
  1231. - Fixed bug #34802 (Fixed crash on object instantiation failure). (Ilia)
  1232. - Fixed bug #34796 (missing SSL linking in ext/ftp when configured as shared).
  1233.   (Jani)
  1234. - Fixed bug #34790 (preg_match_all(), named capturing groups, variable 
  1235.   assignment/return => crash). (Dmitry)
  1236. - Fixed bug #34788 (SOAP Client not applying correct namespace to generated 
  1237.   values). (Dmitry)
  1238. - Fixed bug #34787 (SOAP Client not handling boolean types correctly). (Dmitry)
  1239. - Fixed bug #34786 (2 @ results in change to error_reporting() to random 
  1240.   value) (Dmitry, Tony)
  1241. - Fixed bug #34785 (subclassing of mysqli_stmt does not work). (Georg)
  1242. - Fixed bug #34782 (token_get_all() gives wrong result). (Dmitry)
  1243. - Fixed bug #34777 (Crash in dblib when fetching non-existent error info).
  1244.   (Ilia)
  1245. - Fixed bug #34771 (strtotime() fails with 1-12am/pm). (Derick)
  1246. - Fixed bug #34767 (Zend Engine 1 Compatibility not copying objects 
  1247.   correctly). (Dmitry)
  1248. - Fixed bug #34758 (PDO_DBLIB did not implement rowCount()). (Ilia)
  1249. - Fixed bug #34757 (iconv_substr() gives "Unknown error" when offset > string
  1250.   length). (Tony)
  1251. - Fixed bug #34742 (ftp wrapper failures caused from segmented command 
  1252.   transfer). (Ilia)
  1253. - Fixed bug #34725 (CLI segmentation faults during cleanup). (Dmitry)
  1254. - Fixed bug #34723 (array_count_values() strips leading zeroes). (Tony)
  1255. - Fixed bug #34712 (zend.ze1_compatibility_mode = on segfault). (Dmitry)
  1256. - Fixed bug #34704 (Infinite recursion due to corrupt JPEG). (Marcus)
  1257. - Fixed bug #34678 (__call(), is_callable() and static methods). (Dmitry)
  1258. - Fixed bug #34676 (missing support for strtotime("midnight") and 
  1259.   strtotime("noon")). (Derick)
  1260. - Fixed bug #34645 (ctype corrupts memory when validating large numbers).
  1261.  (Ilia)
  1262. - Fixed bug #34643 (wsdl default value has no effect). (Dmitry)
  1263. - Fixed bug #34623 (Crash in pdo_mysql on longtext fields). (Ilia)
  1264. - Fixed bug #34617 (zend_deactivate: objects_store used after 
  1265.   zend_objects_store_destroy is called). (Dmitry)
  1266. - Fixed bug #34590 (User defined PDOStatement class can't implement 
  1267.   methods). (Marcus)
  1268. - Fixed bug #34584 (Segfault with SPL autoload handler). (Marcus)
  1269. - Fixed bug #34581 (crash with mod_rewrite). (Tony, Ilia)
  1270. - Fixed bug #34565 (mb_send_mail does not fetch 
  1271.   mail.force_extra_parameters). (Marco, Ilia)
  1272. - Fixed bug #34557 (php -m exits with "error" 1). (Johannes)
  1273. - Fixed bug #34518 (Unset doesn't separate container in CV). (Dmitry)
  1274. - Fixed bug #34505 (Possible memory corruption when unmangling properties 
  1275.   with empty names). (Tony)
  1276. - Fixed bug #34478 (Incorrect parsing of url's fragment (#...)). (Dmitry)
  1277. - Fixed bug #34467 (foreach + __get + __set inconsistency). (Dmitry)
  1278. - Fixed bug #34456 (Possible crash inside pspell extension). (Ilia)
  1279. - Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception). (Dmitry)
  1280. - Fixed bug #34450 (Segfault when calling mysqli_close() in destructor). (Tony)
  1281. - Fixed bug #34449 (ext/soap: XSD_ANYXML functionality not exposed). (Dmitry)
  1282. - Fixed bug #34420 (Possible crash inside curl_multi_remove_handle()). (Ilia)
  1283. - Fixed bug #34358 (Fatal error: Cannot re-assign $this). (Dmitry)
  1284. - Fixed bug #34331 (php crashes when variables_order is empty). (Ilia)
  1285. - Fixed bug #34321 (Possible crash in filter code). (Ilia)
  1286. - Fixed bug #34311 (unserialize() crashes with chars above 191 dec). (Nuno)
  1287. - Fixed bug #34310 (foreach($arr as $c->d => $x) crashes). (Dmitry)
  1288. - Fixed bug #34307 (on_modify handler not called to set the default value if 
  1289.   setting from php.ini was invalid). (Andrei)     
  1290. - Fixed bug #34306 (wddx_serialize_value() crashes with long array keys).
  1291.   (Jani)
  1292. - Fixed bug #34304 (date() doesn't have a modifier for ISO Week Day). (Derick)
  1293. - Fixed bug #34302 (date('W') do not return leading zeros for week 1 to 9). 
  1294.   (Derick)
  1295. - Fixed bug #34299 (ReflectionClass::isInstantiable() returns true for abstract
  1296.   classes). (Marcus)
  1297. - Fixed bug #34284 (CLI phpinfo showing html on _SERVER["argv"]). (Jani)
  1298. - Fixed bug #34277 (array_filter() crashes with references and objects). 
  1299.   (Dmitry)
  1300. - Fixed bug #34276 (setAttributeNS doesn't work with default namespace).
  1301.   (Rob)
  1302. - Fixed bug #34260 (Segfault with callbacks (array_map) + overloading).
  1303.   (Dmitry)
  1304. - Fixed bug #34257 (lib64 not handled correctly in ming extension). (Marcus)
  1305. - Fixed bug #34221 (Compiling xmlrpc as shared fails other parts). (Jani)
  1306. - Fixed bug #34216 (Segfault with autoload). (Marcus)
  1307. - Fixed bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler).
  1308.   (Dmitry, Alex)
  1309. - Fixed bug #34191 (ob_gzhandler does not enforce trailing \0). (Ilia)
  1310. - Fixed bug #34156 (memory usage remains elevated after memory limit is 
  1311.   reached). (Ilia)
  1312. - Fixed bug #34148 (+,- and . not supported as parts of scheme). (Ilia)
  1313. - Fixed bug #34137 (assigning array element by reference causes binary mess).
  1314.   (Dmitry) 
  1315. - Fixed bug #34103 (line numbering not maintained in dom document). (Rob)
  1316. - Fixed bug #34078 (Reflection API problems in methods with boolean or 
  1317.   null default values). (Tony)
  1318. - Fixed bug #34068 (Numeric string as array key not cast to integer in 
  1319.   wddx_deserialize()). (Ilia)
  1320. - Fixed bug #34064 (arr[] as param to function in class gives invalid 
  1321.   opcode). (Dmitry)
  1322. - Fixed bug #34062 (Crash in catch block when many arguments are used).
  1323.   (Dmitry)
  1324. - Fixed bug #34052 (date('U') returns %ld not unix timestamp). (Nuno)
  1325. - Fixed bug #34045 (Buffer overflow with serialized object). (Dmitry)
  1326. - Fixed bug #34001 (pdo_mysql truncates numeric fields at 4 chars). (Ilia)
  1327. - Fixed bug #33999 (object remains object when cast to int). (Dmitry)
  1328. - Fixed bug #33996 (No information given for fatal error on passing invalid 
  1329.   value to typed argument). (Dmitry)
  1330. - Fixed bug #33989 (extract($GLOBALS,EXTR_REFS) crashes PHP). (Dmitry)
  1331. - Fixed bug #33987 (php script as ErrorDocument causes crash in Apache 2). 
  1332.   (Ilia)
  1333. - Fixed bug #33967 (misuse of Exception constructor doesn't display 
  1334.   errorfile). (Jani)
  1335. - Fixed bug #33966 (Wrong use of reflectionproperty causes a segfault). (Tony)
  1336. - Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank)
  1337. - Fixed bug #33958 (duplicate cookies and magic_quotes=off may cause a crash).
  1338.   (Ilia)
  1339. - Fixed bug #33957 (gmdate('W')/date('W') sometimes returns wrong week number).
  1340.   (Derick)
  1341. - Fixed bug #33940 (array_map() fails to pass by reference when called 
  1342.   recursively). (Dmitry)
  1343. - Fixed bug #33917 (number_format() output with > 1 char separators). (Jani)
  1344. - Fixed bug #33904 (input array keys being escaped when magic quotes is off).
  1345.   (Ilia)
  1346. - Fixed bug #33903 (spl_autoload_register class method). (Marcus)
  1347. - Fixed bug #33899 (CLI: setting extension_dir=some/path extension=foobar.so 
  1348.   does not work). (Jani)
  1349. - Fixed bug #33882 (CLI was looking for php.ini in wrong path). (Hartmut)
  1350. - Fixed bug #33869 (strtotime() problem with "+1days" format). (Ilia) 
  1351. - Fixed bug #33841 (pdo sqlite driver forgets to update affected column 
  1352.   count on execution of prepared statments). (Ilia)
  1353. - Fixed bug #33837 (Informix ESQL version numbering schema changed). (Jani)
  1354. - Fixed bug #33829 (mime_content_type() returns text/plain for gzip and bzip 
  1355.   files). (Derick)
  1356. - Fixed bug #33802 (throw Exception in error handler causes crash). (Dmitry)
  1357. - Fixed bug #33771 (error_reporting falls to 0 when @ was used inside 
  1358.   try/catch block). (Tony)
  1359. - Fixed bug #33760 (cURL needs to implement CRYPTO_callback functions to 
  1360.   prevent locking). (Mike, Ilia)
  1361. - Fixed bug #33732 (Wrong behavior of constants in class and interface 
  1362.   extending). (Dmitry)
  1363. - Fixed bug #33723 (php_value overrides php_admin_value). (Dmitry)
  1364. - Fixed bug #33720 (mb_encode_mimeheader does not work for multibyte 
  1365.   chars). (Rui)
  1366. - Fixed bug #33710 (ArrayAccess objects does not initialize $this). (Dmitry)
  1367. - Fixed bug #33690 (Crash setting some ini directives in httpd.conf). (Rasmus)
  1368. - Fixed bug #33673 (Added detection for partially uploaded files). (Ilia)
  1369. - Fixed bug #33605 (substr_compare() crashes with negative offset and length).
  1370.   (Tony)
  1371. - Fixed bug #33597 (setcookie() "expires" date format doesn't comply with RFC).
  1372.   (Tony)
  1373. - Fixed bug #33588 (LDAP: RootDSE query not possible). (Jani)
  1374. - Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick)
  1375. - Fixed bug #33578 (strtotime() doesn't understand "11 Oct" format). (Derick)
  1376. - Fixed bug #33562 (date("") crashes). (Derick)
  1377. - Fixed bug #33558 (warning with nested calls to functions returning by 
  1378.   reference). (Dmitry)
  1379. - Fixed bug #33536 (strtotime() defaults to now even on non time string).
  1380.   (Derick)
  1381. - Fixed bug #33532 (Different output for strftime() and date()). (Derick)
  1382. - Fixed bug #33523 (Memory leak in xmlrpc_encode_request()). (Ilia)
  1383. - Fixed bug #33520 (crash if safe_mode is on and session.save_path is changed).
  1384.   (Dmitry)
  1385. - Fixed bug #33512 (Add missing support for isset()/unset() overloading to 
  1386.   complement the property get/set methods). (Dmitry)
  1387. - Fixed bug #33491 (crash after extending MySQLi internal class). (Tony)
  1388. - Fixed bug #33475 (cURL handle is not closed on curl_close(). (Ilia)
  1389. - Fixed bug #33469 (Compile error undefined reference to ifx_checkAPI). (Jani)
  1390. - Fixed bug #33433 (strtoll not available on Tru64). (Jani, Derick)
  1391. - Fixed bug #33427 (ext/odbc: check if unixODBC header file exists). (Jani)
  1392. - Fixed bug #33415 (strtotime() related bugs). (Derick)
  1393. - Fixed bug #33414 (Comprehensive list of incorrect days returned after 
  1394.   strtotime() / date() tests). (Derick)
  1395. - Fixed bug #33389 (double free() when exporting a ReflectionClass). (Marcus)
  1396. - Fixed bug #33383 (crash when retrieving empty LOBs). (Tony)
  1397. - Fixed bug #33382 (array_reverse() fails after *sort()),  introduced by 
  1398.   zend_hash_sort() optimizations in HEAD. (Tony)
  1399. - Fixed bug #33340 (CLI Crash when calling php:function from XSLT). (Rob)
  1400. - Fixed bug #33326 (Cannot build extensions with phpize on Macosx). (Jani)
  1401. - Fixed bug #33318 (throw 1; results in Invalid opcode 108/1/8). (Dmitry)
  1402. - Fixed bug #33312 (ReflectionParameter methods do not work correctly).
  1403.   (Dmitry)
  1404. - Fixed bug #33299 (php:function no longer handles returned dom objects). 
  1405.   (Rob, Joe Orton)
  1406. - Fixed bug #33286 (nested array_walk() calls and user array compare functions
  1407.   broken; FCI cache). (Andrei, patch from m.bretz@metropolis-ag.de)
  1408. - Fixed bug #33277 (private method accessed by child class). (Dmitry)
  1409. - Fixed bug #33268 (iconv_strlen() works only with a parameter of < 3 in
  1410.   length). (Ilia)
  1411. - Fixed bug #33257 (array_splice() inconsistent when passed function instead of
  1412.   variable). (Dmitry)
  1413. - Fixed bug #33243 (ze1_compatibility_mode does not work as expected). (Dmitry)
  1414. - Fixed bug #33242 (Mangled error message when stream fails). (Derick)
  1415. - Fixed bug #33222 (segfault when CURL handle is closed in a callback). (Tony)
  1416. - Fixed bug #33214 (odbc_next_result does not signal SQL errors with 
  1417.   2-statement SQL batches). (rich at kastle dot com, Tony)
  1418. - Fixed bug #33212 ([GCC 4]: 'zend_error_noreturn' aliased to external symbol 
  1419.   'zend_error'). (Dmitry)
  1420. - Fixed bug #33210 (relax jpeg recursive loop protection). (Ilia)
  1421. - Fixed bug #33201 (Crash when fetching some data types). (Frank)
  1422. - Fixed bug #33200 (preg_replace(): magic_quotes_sybase=On makes 'e' modifier 
  1423.   misbehave). (Jani)
  1424. - Fixed bug #33185 (--enable-session=shared does not build). (Jani)
  1425. - Fixed bug #33171 (foreach enumerates private fields declared in base 
  1426.   classes). (Dmitry)
  1427. - Fixed bug #33167 (Possible crash inside pg_fetch_array()). (Ilia)
  1428. - Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1). (Ilia)
  1429. - Fixed bug #33156 (cygwin version of setitimer doesn't accept ITIMER_PROF).
  1430.   (Nuno)
  1431. - Fixed bug #33153 (crash in mssql_next result). (Frank)
  1432. - Fixed bug #33150 (shtool: insecure temporary file creation). (Jani)
  1433. - Fixed bug #33136 (method offsetSet in class extended from ArrayObject crash
  1434.   PHP). (Marcus)
  1435. - Fixed bug #33125 (imagecopymergegray() produces mosaic rainbow effect). 
  1436.   (Pierre)
  1437. - Fixed bug #33116 (crash when assigning class name to global variable in 
  1438.   __autoload). (Dmitry)
  1439. - Fixed bug #33090 (mysqli_prepare() doesn't return an error). (Georg)
  1440. - Fixed bug #33076 (str_ireplace() incorrectly counts result string length
  1441.   and may cause segfault). (Tony)
  1442. - Fixed bug #33072 (Add a safemode/open_basedir check for runtime 
  1443.   "session.save_path" change using session_save_path() function). (Rasmus)
  1444. - Fixed bug #33070 (Improved performance of bzdecompress() by several orders 
  1445.   of magnitude). (Ilia)
  1446. - Fixed bug #33059 (crash when moving xml attribute set in dtd). (Ilia)
  1447. - Fixed bug #33057 (Don't send extraneous entity-headers on a 304 as per 
  1448.   RFC 2616 section 10.3.5) (Rasmus, Choitel)
  1449. - Fixed bug #33019 (socket errors cause memory leaks in php_strerror()).
  1450.   (jwozniak23 at poczta dot onet dot pl, Tony).
  1451. - Fixed bug #33017 ("make distclean" gives an error with VPATH build). (Jani)
  1452. - Fixed bug #33013 ("next month" was handled wrong while parsing dates). 
  1453.   (Derick)
  1454. - Fixed bug #32993 (implemented Iterator function current() don't throw 
  1455.   exception). (Dmitry)
  1456. - Fixed bug #32981 (ReflectionMethod::getStaticVariables() causes apache2.0.54
  1457.   seg fault). (Dmitry)
  1458. - Fixed bug #32956 (mysql_bind_result() doesn't support MYSQL_TYPE_NULL). 
  1459.   (Georg)
  1460. - Fixed bug #32947 (Incorrect option for mysqli default password). (Georg)
  1461. - Fixed bug #32944 (Disabling session.use_cookies doesn't prevent reading 
  1462.   session cookies). (Jani, Tony)
  1463. - Fixed bug #32941 (Sending structured SOAP fault kills a php). (Dmitry)
  1464. - Fixed bug #32937 (open_basedir looses trailing / in the limiter).
  1465.   (Adam Conrad)
  1466. - Fixed bug #32936 (http redirects URLs are not checked for control chars).
  1467.   (Ilia)
  1468. - Fixed bug #32933 (Cannot extend class "SQLiteDatabase"). (Marcus)
  1469. - Fixed bug #32932 (Oracle LDAP: ldap_get_entries(), invalid pointer). (Jani)
  1470. - Fixed bug #32930 (class extending DOMDocument doesn't clone properly). (Rob)
  1471. - Fixed bug #32924 (file included with "auto_prepend_file" can be included 
  1472.   with require_once() or include_once()). (Stas)
  1473. - Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony)
  1474. - Fixed bug #32852 (Crash with singleton and __destruct when 
  1475.   zend.ze1_compatibility_mode = On). (Dmitry)
  1476. - Fixed bug #32833 (Invalid opcode). (Dmitry)
  1477. - Fixed bug #32813 (parse_url() does not handle scheme-only urls properly).
  1478.   (Ilia)
  1479. - Fixed bug #32810 (temporary files not using plain file wrapper). (Ilia)
  1480. - Fixed bug #32809 (Missing T1LIB support on Windows). (Edin)
  1481. - Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
  1482. - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
  1483. - Fixed bug #32799 (crash: calling the corresponding global var during the 
  1484.   destruct). (Dmitry)
  1485. - Fixed bug #32776 (SOAP doesn't support one-way operations). (Dmitry)
  1486. - Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas)
  1487. - Fixed bug #32759 (incorrect determination of default value (COM)). (Wez)
  1488. - Fixed bug #32758 (Cannot access safearray properties in VB6 objects). (Wez)
  1489. - Fixed bug #32755 (Segfault in replaceChild() when DocumentFragment has no 
  1490.   children). (Rob)
  1491. - Fixed bug #32753 (Undefined constant SQLITE_NOTADB). (Ilia)
  1492. - Fixed bug #32742 (segmentation fault when the stream with a wrapper
  1493.   is not closed). (Tony, Dmitry)
  1494. - Fixed bug #32699 (pg_affected_rows() was defined when it was not available).
  1495.   (Derick)
  1496. - Fixed bug #32686 (Require/include file in destructor causes segfault).
  1497.   (Marcus)
  1498. - Fixed bug #32682 (ext/mssql: Error on module shutdown when called from 
  1499.   activescript). (Frank)
  1500. - Fixed bug #32674 (exception in iterator causes crash). (Dmitry)
  1501. - Fixed bug #32660 (Assignment by reference causes crash when field access is 
  1502.   overloaded (__get)). (Dmitry)
  1503. - Fixed bug #32647 (Using register_shutdown_function() with invalid callback 
  1504.   can crash PHP). (Jani)
  1505. - Fixed bug #32615 (Segfault in replaceChild() using fragment when 
  1506.   previousSibling is NULL). (Rob)
  1507. - Fixed bug #32613 (ext/snmp: use of snmp_shutdown() causes snmpapp.conf 
  1508.   access errors). (Jani, ric at arizona dot edu)
  1509. - Fixed bug #32608 (html_entity_decode() converts single quotes even if 
  1510.   ENT_NOQUOTES is given). (Ilia)
  1511. - Fixed bug #32596 (Segfault/Memory Leak by getClass (etc) in __destruct).
  1512.   (Dmitry)
  1513. - Fixed bug #32591 (ext/mysql: Unsatisfied symbol: ntohs with HP-UX). (Jani)
  1514. - Fixed bug #32589 (possible crash inside imap_mail_compose() function).
  1515.   (Ilia)
  1516. - Fixed bug #32589 (Possible crash inside imap_mail_compose, with charsets).
  1517.   (Ilia)
  1518. - Fixed bug #32587 (Apache2: errors sent to error_log do not include 
  1519.   timestamps). (Jani)
  1520. - Fixed bug #32560 (configure looks for incorrect db2 library). (Tony)
  1521. - Fixed bug #32553 (mmap loads only the 1st 2000000 bytes on Win32). (Ilia)
  1522. - Fixed bug #32533 (proc_get_status() returns the incorrect process status).
  1523.   (Ilia)
  1524. - Fixed bug #32530 (chunk_split() does not append endstr if chunklen is
  1525.   longer then the original string). (Ilia)
  1526. - Fixed bug #32491 (File upload error - unable to create a temporary file).
  1527.   (Uwe Schindler)
  1528. - Fixed bug #32455 (wrong setting property to unset value). (Dmitry)
  1529. - Fixed bug #32429 (method_exists() always return TRUE if __call method 
  1530.   exists). (Dmitry)
  1531. - Fixed bug #32428 (The @ warning error suppression operator is broken).
  1532.   (Dmitry)
  1533. - Fixed bug #32427 (Interfaces are not allowed 'static' access modifier).
  1534.   (Dmitry)
  1535. - Fixed bug #32405 (mysqli::fetch() returns bad data - 64bit problem).
  1536.   (Andrey)
  1537. - Fixed bug #32296 (get_class_methods() output has changed between 5.0.2 and 
  1538.   5.0.3). (Dmitry)
  1539. - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg)
  1540. - Fixed bug #32245 (xml_parser_free() in a function assigned to the xml 
  1541.   parser gives a segfault). (Rob)
  1542. - Fixed bug #32179 (xmlrpc_encode() segfaults with recursive references).
  1543.   (Tony)
  1544. - Fixed bug #32171 (Userspace stream wrapper crashes PHP). (Tony, Dmitry)
  1545. - Fixed bug #32160 (copying a file into itself leads to data loss). (Ilia)
  1546. - Fixed bug #32139 (SOAP client does not auto-handle base64 encoding). (Ilia)
  1547. - Fixed bug #32109 ($_POST is not populated in multi-threaded environment). 
  1548.   (Moriyoshi)
  1549. - Fixed bug #32080 (segfault when assigning object to itself with 
  1550.   zend.ze1_compatibility_mode=On). (Dmitry)
  1551. - Fixed bug #32021 (Crash caused by range('', 'z')). (Derick)
  1552. - Fixed bug #32013 (ext/mysqli bind_result causes fatal error: memory limit).
  1553.   (Andrey)
  1554. - Fixed bug #32010 (Memory leak in mssql_fetch_batch). (fmk)
  1555. - Fixed bug #32009 (crash when mssql_bind() is called more than once). (Frank)
  1556. - Fixed bug #31971 (ftp_login fails on some SSL servers).
  1557.   (frantisek at augusztin dot com)
  1558. - Fixed bug #31887 (ISAPI: Custom 5xx error does not return correct HTTP 
  1559.   response message). (Jani)
  1560. - Fixed bug #31828 (Crash with zend.ze1_compatibility_mode=On). (Dmitry)
  1561. - Fixed bug #31668 (multi_query works exactly every other time - multi query 
  1562.   d/e flag global and not per connection). (Andrey)
  1563. - Fixed bug #31636 (another crash when echoing a COM object). (Wez)
  1564. - Fixed bug #31583 (php_std_date() uses short day names in non-y2k_compliance
  1565.   mode). (mike at php dot net)
  1566. - Fixed bug #31525 (object reference being dropped. $this getting lost).
  1567.  (Stas, Dmitry)
  1568. - Fixed bug #31502 (Wrong deserialization from session when using WDDX 
  1569.   serializer). (Dmitry) 
  1570. - Fixed bug #31478 (segfault with empty() / isset()). (Moriyoshi)
  1571. - Fixed bug #31465 (False warning in unpack() when working with *). (Ilia)
  1572. - Fixed bug #31363 (broken non-blocking flock()). (ian at snork dot net)
  1573. - Fixed bug #31358 (Older GCC versions do not provide portable va_copy()).
  1574.   (Jani)
  1575. - Fixed bug #31341 (escape on curly inconsistent). (Dmitry)
  1576. - Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle 
  1577.   -pthread). (Jani)
  1578. - Fixed bug #31213 (Side effects caused by fix of bug #29493). (Dmitry)
  1579. - Fixed bug #31177 (memory leaks and corruption because of incorrect 
  1580.   refcounting). (Dmitry)
  1581. - Fixed bug #31158 (array_splice on $GLOBALS crashes). (Dmitry)
  1582. - Fixed bug #31054 (safe_mode & open_basedir checks only check first  
  1583.   include_path value). (Ilia)
  1584. - Fixed bug #31033 (php:function(string, nodeset) with xsl:key crashes PHP).
  1585.   (Rob)
  1586. - Fixed bug #30961 (Wrong line number in ReflectionClass getStartLine()).
  1587.   (Dmitry)
  1588. - Fixed bug #30889 (Conflict between __get/__set and ++ operator). (Dmitry)
  1589. - Fixed bug #30833 (array_count_values() modifying input array). (Tony)
  1590. - Fixed bug #30828 (debug_backtrace() reports incorrect class in overridden 
  1591.   methods). (Dmitry)
  1592. - Fixed bug #30820 (static member conflict with $this->member silently 
  1593.   ignored). (Dmitry)
  1594. - Fixed bug #30819 (Better support for LDAP SASL bind). (Jani)
  1595. - Fixed bug #30791 (magic methods (__sleep/__wakeup/__toString) call 
  1596.   __call if object is overloaded). (Dmitry)
  1597. - Fixed bug #30707 (Segmentation fault on exception in method). 
  1598.   (Stas, Dmitry)
  1599. - Fixed bug #30702 (cannot initialize class variable from class constant). 
  1600.   (Dmitry)
  1601. - Fixed bug #30578 (Output buffers flushed before calling __destruct() 
  1602.   functions). (Jani)
  1603. - Fixed bug #30519 (Interface not existing says Class not found). (Dmitry)
  1604. - Fixed bug #30407 (Strange behavior of default arguments). (Dmitry)
  1605. - Fixed bug #30394 (Assignment operators yield wrong result with __get/__set).
  1606.   (Dmitry)
  1607. - Fixed bug #30332 (zend.ze1_compatibility_mode isn't fully compatible with 
  1608.   array_push()). (Dmitry)
  1609. - Fixed bug #30162 (Catching exception in constructor causes lose of 
  1610.   $this). (Dmitry)
  1611. - Fixed bug #30140 (Problem with array in static properties). (Dmitry)
  1612. - Fixed bug #30126 (Enhancement for error message for abstract classes).
  1613.   (Marcus)
  1614. - Fixed bug #30096 (gmmktime does not return the current time). (Derick)
  1615. - Fixed bug #30080 (Passing array or non array of objects). (Dmitry)
  1616. - Fixed bug #30052 (Crash on shutdown after odbc_pconnect()). (Edin)
  1617. - Fixed bug #29983 (PHP does not explicitly set mime type & charset). (Ilia)
  1618. - Fixed bug #29975 (memory leaks when set_error_handler() is used inside error
  1619.   handler). (Tony)
  1620. - Fixed bug #29971 (variables_order behavior). (Dmitry)
  1621. - Fixed bug #29944 (Function defined in switch, crashes). (Dmitry)
  1622. - Fixed bug #29896 (Backtrace argument list out of sync). (Dmitry)
  1623. - Fixed bug #29728 (Reflection API Feature: Default parameter value). (Marcus)
  1624. - Fixed bug #29689 (default value of protected member overrides default value
  1625.   of private and other private variable problems in inherited classes). (Stas)
  1626. - Fixed bug #29683 (headers_list() returns empty array). (Tony)
  1627. - Fixed bug #29583 (crash when echoing a COM object). (M.Sisolak, Wez)
  1628. - Fixed bug #29522 (accessing properties without connection). (Georg)
  1629. - Fixed bug #29361 (var_export() producing invalid code). (Derick)
  1630. - Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia)
  1631. - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default). (Georg)
  1632. - Fixed bug #29334 (win32 mail() provides incorrect Date: header). (Jani)
  1633. - Fixed bug #29311 (calling parent constructor in mysqli). (Georg)
  1634. - Fixed bug #29268 (__autoload() not called with Reflection->getClass()).
  1635.   (Dmitry)
  1636. - Fixed bug #29256 (SOAP HTTP Error when envelop size is more than 24345 
  1637.   bytes). (Dmitry, Wez)
  1638. - Fixed bug #29253 (array_diff with $GLOBALS argument fails). (Dmitry)
  1639. - Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry)
  1640. - Fixed bug #29210 (Function: is_callable - no support for private and 
  1641.   protected classes). (Dmitry)
  1642. - Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry)
  1643. - Fixed bug #29104 (Function declaration in method doesn't work). (Dmitry)
  1644. - Fixed bug #29061 (soap extension segfaults). (Dmitry)
  1645. - Fixed bug #29015 (Incorrect behavior of member vars(non string ones)-numeric
  1646.   mem vars and others). (Dmitry)
  1647. - Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry)
  1648. - Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry)
  1649. - Fixed bug #28839 (SIGSEGV in interactive mode (php -a)).
  1650.   (kameshj at fastmail dot fm)
  1651. - Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani)
  1652. - Fixed bug #28568 (SAPI::known_post_content_types is not thread safe).
  1653.   (Moriyoshi)
  1654. - Fixed bug #28377 (debug_backtrace is intermittently passing args). (Dmitry)
  1655. - Fixed bug #28355 (glob wont error if dir is not readable). (Hartmut)
  1656. - Fixed bug #28072 (static array with some constant keys will be incorrectly 
  1657.   ordered). (Dmitry)
  1658. - Fixed bug #27908 (xml default_handlers not being called). (Rob)
  1659. - Fixed bug #27598 (list() array key assignment causes HUGE memory leak).
  1660.   (Dmitry)
  1661. - Fixed bug #27268 (Bad references accentuated by clone). (Dmitry)
  1662. - Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when
  1663.   called via STDIN). (Dmitry)
  1664. - Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may 
  1665.   result in seg fault). (Dmitry)
  1666. - Fixed bug #25359 (array_multisort() doesn't work in a function if array is 
  1667.   global or reference). (Dmitry)
  1668. - Fixed bug #22836 (returning reference to uninitialized variable). (Dmitry)
  1669. - Fixed bug #21306 (ext/sesssion: catch bailouts of write handler during 
  1670.   RSHUTDOWN). (Jani, Xuefer at 21cn dot com)
  1671. - Fixed bug #15854 (boolean ini options may be incorrectly displayed as Off 
  1672.   when they are On). (Tony)
  1673. - Fixed bugs #14561, #20382, #26090, #26320, #28024, #30532, #32086, #32270,
  1674.   #32555, #32588, #33056 (strtotime() related bugs). (Derick)
  1675.  
  1676. 31 Mar 2005, PHP 5.0.4
  1677. - Added SNMPv2 support. (harrie)
  1678. - Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)
  1679. - Added length and charsetnr for field array and object in mysqli. (Georg)
  1680. - Added checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem()
  1681.   and gmp_fact() to prevent SIGFPE. (Tony)
  1682. - Changed foreach() to throw an exception if IteratorAggregate::getIterator()
  1683.   does not return an Iterator. (Marcus)
  1684. - Changed phpize not to require libtool. (Jani)
  1685. - Updated bundled oniguruma library (used for multibyte regular expression)
  1686.   to 3.7.0. (Moriyoshi)
  1687. - Updated bundled libmbfl library (used for multibyte functions). (Moriyoshi)
  1688.   Fixed bugs:
  1689.   . Bug #32311 (mb_encode_mimeheader() does not properly escape characters)
  1690.   . Bug #32063 (mb_convert_encoding ignores named entity 'alpha')
  1691.   . Bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes)
  1692.   . bug #30573 (compiler warnings in libmbfl due to invalid type cast)
  1693.   . Bug #30549 (incorrect character translations for some ISO8859 charsets).
  1694. - Fixed bug preventing from building oci8 as shared. 
  1695.   (stanislav dot voroniy at portavita dot nl, Tony)
  1696. - Fixed a bug in mysql_affected_rows and mysql_stmt_affected_rows when the
  1697.   api function returns -1 (Georg)
  1698. - Fixed several leaks in ext/browscap and sapi/embed. (Andrei)
  1699. - Fixed several leaks in ext/filepro. (Tony)
  1700. - Fixed build system to always use bundled libtool files. (Jani)
  1701. - Fixed a bug in mysqli_stmt_execute() (type conversion with NULL values).
  1702.   (Georg)
  1703. - Fixed segfault in mysqli_fetch_field_direct() when invalid field offset 
  1704.   is passed. (Tony)
  1705. - Fixed posix_getsid() & posix_getpgid() to return sid & pgid instead 
  1706.   of true. (Tony)   
  1707. - Fixed bug #32394 (offsetUnset() segfaults in a foreach). (Marcus)
  1708. - Fixed bug #32373 (segfault in bzopen() if supplied path to non-existent 
  1709.   file). (Tony)
  1710. - Fixed bug #32326 (Check values of Connection/Transfer-Encoding 
  1711.   case-incentively in SOAP extension). (Ilia)
  1712. - Fixed bug #32290 (call_user_func_array() calls wrong class method within 
  1713.   child class). (Marcus)
  1714. - Fixed bug #32238 (spl_array.c: void function cannot return value). (Johannes)
  1715. - Fixed bug #32210 (proc_get_status() sets "running" always to true). (Ilia)
  1716. - Fixed bug #32200 (Prevent using both --with-apxs2 and --with-apxs2filter).
  1717.   (Jani)
  1718. - Fixed bug #32134 (Overloading offsetGet/offsetSet). (Marcus)
  1719. - Fixed bug #32130 (ArrayIterator::seek() does not throw an Exception on 
  1720.   invalid index). (Marcus)
  1721. - Fixed bug #32115 (dateTime SOAP encoding of timezone incorrect). (Dmitry)
  1722. - Fixed bug #32081 (in mysqli default socket value is not being used). (Ilia)
  1723. - Fixed bug #32021 (Crash caused by range('', 'z')). (Derick)
  1724. - Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable).
  1725.   (Rob)
  1726. - Fixed bug #32001 (xml_parse_into_struct() function exceeds maximum 
  1727.   execution time). (Rob, Moriyoshi)
  1728. - Fixed bug #31980 (Unicode exif data not available on Windows). (Edin)
  1729. - Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns
  1730.   with NULL values). (Daniel Convissor)
  1731. - Fixed bug #31878 (Segmentation fault using clone keyword on nodes). (Rob)
  1732. - Fixed bug #31858 (--disable-cli does not force --without-pear). (Jani)
  1733. - Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string).
  1734.   (Jani)
  1735. - Fixed bug #31832 (SOAP encoding problem with complex types in WSDL mode with
  1736.   multiple parts). (Dmitry)
  1737. - Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia)
  1738. - Fixed bug #31796 (readline completion handler does not handle empty return
  1739.   values). (Ilia)
  1740. - Fixed bug #31792 (getrusage() does not provide ru_nswap value). (Ilia)
  1741. - Fixed bug #31755 (Cannot create SOAP header in no namespace). (Dmitry)
  1742. - Fixed bug #31754 (dbase_open() fails for mode = 1). (Mehdi, Derick)
  1743. - Fixed bug #31751 (pg_parameter_status() missing on Windows). (Edin)
  1744. - Fixed bug #31747 (SOAP Digest Authentication doesn't work with 
  1745.   "HTTP/1.1 100 Continue" response). (Dmitry)
  1746. - Fixed bug #31732 (mb_get_info() causes segfault when no parameters 
  1747.   specified). (Tony)
  1748. - Fixed bug #31710 (Wrong return values for mysqli_autocommit/commit/rollback).
  1749.   (Georg)
  1750. - Fixed bug #31705 (parse_url() does not recognize http://foo.com#bar). (Ilia)
  1751. - Fixed bug #31695 (Cannot redefine endpoint when using WSDL). (Dmitry)
  1752. - Fixed bug #31684 (dio_tcsetattr(): misconfigured termios settings).
  1753.   (elod at itfais dot com)
  1754. - Fixed bug #31683 (changes to $name in __get($name) override future 
  1755.   parameters). (Dmitry)
  1756. - Fixed bug #31699 (unserialize() float problem on non-English locales). (Ilia)
  1757. - Fixed bug #31562 (__autoload() problem with static variables). (Marcus)
  1758. - Fixed bug #31651 (ReflectionClass::getDefaultProperties segfaults with arrays).
  1759.   (Marcus)
  1760. - Fixed bug #31623 (OCILogin does not support password grace period).
  1761.   (daniel dot beet at accuratesoftware dot com, Tony)
  1762. - Fixed bug #31527 (crash in msg_send() when non-string is stored without
  1763.   being serialized). (Ilia)
  1764. - Fixed bug #31515 (Improve performance of scandir() by factor of 10 or so). (Ilia)
  1765. - Fixed bug #31514 (open_basedir uses path_translated rather then cwd for .
  1766.   translation). (Ilia)
  1767. - Fixed bug #31480 (Possible infinite loop in imap_mail_compose()). (Ilia)
  1768. - Fixed bug #31479 (Fixed crash in chunk_split(), when chunklen > strlen). (Ilia)
  1769. - Fixed bug #31454 (session_set_save_handler crashes PHP when supplied 
  1770.   non-existent object ref). (Tony)
  1771. - Fixed bug #31444 (Memory leak in zend_language_scanner.c).
  1772.   (hexer at studentcenter dot org)
  1773. - Fixed bug #31442 (unserialize broken on 64-bit systems). (Marcus)
  1774. - Fixed bug #31440 ($GLOBALS can be overwritten via GPC when register_globals
  1775.   is enabled). (Ilia)
  1776. - Fixed bug #31422 (No Error-Logging on SoapServer-Side). (Dmitry)
  1777. - Fixed bug #31413 (curl POSTFIELDS crashes on 64-bit platforms). (Joe)
  1778. - Fixed bug #31396 (compile fails with gd 2.0.33 without freetype). (Jani)
  1779. - Fixed bug #31371 (highlight_file() trims new line after heredoc). (Ilia)
  1780. - Fixed bug #31361 (simplexml/domxml segfault when adding node twice). (Rob)
  1781. - Fixed bug #31348 (CachingIterator::rewind() leaks). (Marcus)
  1782. - Fixed bug #31346 (ArrayIterator::next segfaults). (Marcus)
  1783. - Fixed bug #31190 (Unexpected warning then exception is thrown from 
  1784.   call_user_func_array()). (phpbugs at domain51 dot net, Dmitry)
  1785. - Fixed bug #31142 (imap_mail_compose() fails to generate correct output). (Ilia)
  1786. - Fixed bug #31139 (XML Parser Functions seem to drop & when parsing). (Rob)
  1787. - Fixed bug #31398 (When magic_guotes_gpc are enabled filenames with ' get cutoff).
  1788.   (Ilia)
  1789. - Fixed bug #31288 (Possible crash in mysql_fetch_field(), if mysql_list_fields() 
  1790.   was not called previously). (Ilia)
  1791. - Fixed bug #31107, #31110, #31111, #31249 (Compile failure of zend_strtod.c).
  1792.   (Jani)
  1793. - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick)
  1794. - Fixed bug #31107 (Compile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick)
  1795. - Fixed bug #31103 (Better error message when c-client cannot be found). (Ilia)
  1796. - Fixed bug #31101 (missing kerberos header file path with --with-openssl). (Jani)
  1797. - Fixed bug #31098 (isset() / empty() incorrectly return true in dereference of
  1798.   a string type). (Moriyoshi)
  1799. - Fixed bug #31087 (broken php_url_encode_hash macro). (Ilia)
  1800. - Fixed bug #31072 (var_export() does not output an array element with an empty
  1801.   string key). (Derick)
  1802. - Fixed bug #31060 (imageftbbox() does not use linespacing parameter). (Jani)
  1803. - Fixed bug #31056 (php_std_date() returns invalid formatted date if 
  1804.   y2k_compliance is On). (Ilia)
  1805. - Fixed bug #31055 (apache2filter: per request leak proportional to the full
  1806.   path of the request URI). (kameshj at fastmail dot fm)
  1807. - Fixed bug #30901 (can't send cookies with soap envelop). (Dmitry)
  1808. - Fixed bug #30871 (Misleading warning message for array_combine()). (Andrey)
  1809. - Fixed bug #30868 (evaluated pointer comparison in mbregex causes compile
  1810.   failure). (Moriyoshi)
  1811. - Fixed bug #30862 (Static array with boolean indexes). (Marcus)
  1812. - Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia)
  1813. - Fixed bug #30725 (PHP segfaults when an exception is thrown in getIterator() 
  1814.   within foreach). (Marcus)
  1815. - Fixed bug #30609 (cURL functions bypass open_basedir). (Jani)
  1816. - Fixed bug #30446 (apache2handler: virtual() includes files out of sequence)
  1817. - Fixed bug #30430 (odbc_next_result() doesn't bind values and that results 
  1818.   in segfault). (pdan-php at esync dot org, Tony)
  1819. - Fixed bug #30266 (Invalid opcode 137/1/8). (Marcus)
  1820. - Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many
  1821.   parameters). (Jani)
  1822. - Fixed bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught
  1823.   SoapFault exception). (Dmitry)
  1824. - Fixed bug #29989 (type re_registers redefined in oniguruma.h). (Moriyoshi)
  1825. - Fixed bug #28803 (enabled debug causes bailout errors with CLI on AIX 
  1826.   because of fflush() called on already closed filedescriptor). (Tony)
  1827. - Fixed bug #29767 (Weird behaviour of __set($name, $value)). (Dmitry)
  1828. - Fixed bug #29733 (printf() handles repeated placeholders wrong).
  1829.   (bugs dot php dot net at bluetwanger dot de, Ilia)
  1830. - Fixed bug #29424 (width and height inverted for JPEG2000 files). (Ilia)
  1831. - Fixed bug #29329 (configure for mysqli with shared doesn't work). (Georg)
  1832. - Fixed bug #29136 (make test - libtool failure on MacOSX). (Jani)
  1833. - Fixed bug #28976 (mail(): use "From:" from headers if sendmail_from is empty).
  1834.   (Jani)
  1835. - Fixed bug #28930 (PHP sources pick wrong header files generated by bison).
  1836.   (eggert at gnu dot org, Jani)
  1837. - Fixed bug #28840 (__destruct of a class that extends mysqli not called).
  1838.   (Marcus)
  1839. - Fixed bug #28804 (ini-file section parsing pattern is buggy).
  1840.   (wendland at scan-plus dot de)
  1841. - Fixed bug #28451 (corrupt EXIF headers have unlimited recursive IFD directory
  1842.   entries). (Andrei)
  1843. - Fixed bug #28444 (Cannot access undefined property for object with overloaded
  1844.   property access). (Dmitry)
  1845. - Fixed bug #28442 (Changing a static variables in a class changes it across 
  1846.   sub/super classes.) (Marcus)
  1847. - Fixed bug #28324 (HTTP_SESSION_VARS appear when register_long_arrays is 
  1848.   Off). (Tony)
  1849. - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr stream).
  1850.   (chris at ex-parrot dot com)
  1851. - Fixed bug #28067 (partially incorrect utf8 to htmlentities mapping). (Derick,
  1852.   Benjamin Greiner)
  1853. - Fixed bug #28041 (SOAP HTTP Digest Access Authentication). (Dmitry)
  1854. - Fixed bug #27633 (Double \r problem on ftp_get in ASCII mode on Win32). (Ilia)
  1855. - Fixed bug #18613 (Multiple OUs in x509 certificate not handled properly).
  1856.   (Jani)
  1857.  
  1858. 15 Dec 2004, PHP 5.0.3
  1859. - Added the %F modifier to *printf to render a non-locale-aware representation
  1860.   of a float with the . as decimal seperator. (Derick)
  1861. - Fixed error handling in mysqli_multi_query. (Georg)
  1862. - Extended the functionality of is_subclass_of() to accept either a class name
  1863.   or an object as first parameter. (Andrey) 
  1864. - Fixed potential problems with unserializing invalid serialize data. (Marcus)
  1865. - Fixed bug #32076 (ReflectionMethod::isDestructor() always return true). 
  1866.   (Derick, Tony)
  1867. - Fixed bug #31034 (Problem with non-existing iconv header file). (Derick)
  1868. - Fixed bug #30995 (snmp extension does not build with net-snmp 5.2). (Ilia)
  1869. - Fixed bug #30994 (SOAP server unable to handle request with references).
  1870.   (Dmitry)
  1871. - Fixed bug #30990 (allow popen() on *NIX to accept 'b' flag). (Ilia)
  1872. - Fixed bug #30967 (properties in extended mysqli classes don't work). (Georg)
  1873. - Fixed bug #30928 (When Using WSDL, SoapServer doesn't handle private or
  1874.   protected properties). (Dmitry)
  1875. - Fixed bug #30922 (reflective functions crash PHP when interfaces extend
  1876.   themselves). (Tony, Dmitry)
  1877. - Fixed bug #30904 (segfault when recording soapclient into session). (Tony,
  1878.   Dmitry)
  1879. - Fixed bug #30890 (MySQLi testsuite)
  1880. - Fixed bug #30856 (ReflectionClass::getStaticProperties segfaults). (Marcus)
  1881. - Fixed bug #30832 ("!" stripped off comments in xml parser). (Rob)
  1882. - Fixed bug #30799 (SoapServer doesn't handle private or protected properties).
  1883.   (Dmitry)
  1884. - Fixed bug #30783 (Apache crash when using ReflectionFunction::
  1885.   getStaticVariables()). (Marcus)
  1886. - Fixed bug #30750 (Meaningful error message when upload directory is not 
  1887.   accessible). (Ilia)
  1888. - Fixed bug #30685 (Malformed SOAPClient http header reequest). (Dmitry)
  1889. - Fixed bug #30672 (Problem handling exif data in jpeg images at unusual 
  1890.   places). (Marcus)
  1891. - Fixed bug #30658 (Ensure that temporary files created by GD are removed).
  1892.   (Ilia)
  1893. - Fixed bug #30645 (def. multi result set support for mysql_connect). (Georg)
  1894. - Fixed bug #30637 (compile with pear error). (Antony)
  1895. - Fixed bug #30587 (array_multisort doesn't separate zvals before 
  1896.   changing them). (Tony)
  1897. - Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean).
  1898.   (Andi)
  1899. - Fixed bug #30566 (attribute namespace URIs are inconsistent when parsing).
  1900.   (Rob)
  1901. - Fixed bug #30490 (PEAR installation fails). (Antony)
  1902. - Fixed bug #30475 (curl_getinfo() may crash in some situations). (Ilia)
  1903. - Fixed bug #30442 (segfault when parsing ?getvariable[][ ). (Tony)
  1904. - Fixed bug #30388 (rename across filesystems loses ownership and 
  1905.   permission info). (Tony)
  1906. - Fixed bug #30387 (stream_socket_client async connect was broken).
  1907.   (vnegrier at esds dot com, Wez).
  1908. - Fixed bug #30381 (Strange results with get_class_vars()). (Marcus)
  1909. - Fixed bug #30375 (cal_info() does not work without a parameter). (Ilia)
  1910. - Fixed bug #30362 (stream_get_line() not handling end string correctly).
  1911.   (Ilia)
  1912. - Fixed bug #30359 (SOAP client requests have no port in "Host" field).
  1913.   (Dmitry)
  1914. - Fixed bug #30356 (str_ireplace() does not work on all strings). (Ilia)
  1915. - Fixed bug #30344 (Reflection::getModifierNames() returns too long strings).
  1916.   (Marcus)
  1917. - Fixed bug #30329 (Error Fetching http body, No Content-Length, connection
  1918.   closed or chunked data). (Dmitry)
  1919. - Fixed bug #30282 (segfault when using unknown/unsupported 
  1920.   session.save_handler and/or session.serialize_handler). (Tony)
  1921. - Fixed bug #30281 (Prevent non-wbmp images from being detected as such).
  1922.   (Ilia)
  1923. - Fixed bug #30276 (Possible crash in ctype_digit on large numbers). (Ilia)
  1924. - Fixed bug #30230 (exception handler not working with objects). (Marcus)
  1925. - Fixed bug #30224 (Sybase date strings are sometimes not null terminated).
  1926.   (Ilia)
  1927. - Fixed bug #30175 (SOAP results aren't parsed correctly). (Dmitry)
  1928. - Fixed bug #30147 (OO sqlite_fetch_object did not reset error handler). (Wez)
  1929. - Fixed bug #30133 (get_current_user() crashes on Windows). (Edin)
  1930. - Fixed bug #30061 (xml_set_start_namespace_decl_handler not called). (Rob)
  1931. - Fixed bug #30057 (did not detect IPV6 on FreeBSD 4.1). (Wez)
  1932. - Fixed bug #30042 (strtotime does not use second param). (Derick)
  1933. - Fixed bug #30027 (Possible crash inside ftp_get()).
  1934.   (cfield at affinitysolutions dot com)
  1935. - Fixed bug #29954 (array_reduce segfaults when initial value is array). (Tony)
  1936. - Fixed bug #29883 (isset gives invalid values on strings). (Tony, Dmitry)
  1937. - Fixed bug #29801 (Set limit on the size of mmapable data). (Ilia)
  1938. - Fixed bug #29557 (strtotime error). (Derick)
  1939. - Fixed bug #29418 (double free when openssl_csr_new fails).
  1940.   (Kamesh Jayachandran).
  1941. - Fixed bug #29385 (Soapserver always uses std class). (David, Dmitry)
  1942. - Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob)
  1943. - Fixed bug #28817 (Var problem when extending domDocument). (Georg)
  1944. - Fixed bug #28599 (strtotime fails with zero base time). (Derick)
  1945. - Fixed bug #28598 (Lost support for MS Symbol fonts). (Pierre)
  1946. - Fixed bug #28220 (mb_strwidth() returns wrong width values for some hangul
  1947.   characters). (Moriyoshi)
  1948. - Fixed bug #28228 (NULL decimal separator is not being handled correctly).
  1949.   (Ilia)
  1950. - Fixed bug #28209 (strtotime("now")). (Derick)
  1951. - Fixed bug #27798 (private / protected variables not exposed by 
  1952.   get_object_vars() inside class). (Marcus)
  1953. - Fixed bug #27728 (Can't return within a zend_try {} block or the previous
  1954.   bailout state isn't restored. (Andi)
  1955. - Fixed bug #27183 (Userland stream wrapper segfaults on stream_write). 
  1956.   (Christian)
  1957.  
  1958. 23 Sep 2004, PHP 5.0.2
  1959. - Added new boolean (fourth) parameter to array_slice() that turns on the
  1960.   preservation of keys in the returned array. (Derick)
  1961. - Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes
  1962.   them sort based on the current locale. (Derick)
  1963. - Added interface_exists() and make class_exists() only return true for real
  1964.   classes. (Andrey)
  1965. - Added PHP_EOL constant that contains the OS way of representing newlines.
  1966.   (Paul Hudson, Derick)
  1967. - Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory
  1968.   exhaustion. (Andrei)
  1969. - Renamed SoapClient->__call() to SoapClinet->__soapCall(). (Dmitry)
  1970. - Fixed bug with raw_post_data not getting set (Brian)
  1971. - Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev)
  1972. - Fixed bug #30209 (ReflectionClass::getMethod() lowercases attribute). 
  1973.   (Marcus)
  1974. - Fixed bug #30182 (SOAP module processing WSDL file dumps core). (Dmitry)
  1975. - Fixed bug #30045 (Cannot pass big integers (> 2147483647) in SOAP requests).
  1976.   (Dmitry)
  1977. - Fixed bug #29985 (unserialize()/ __PHP_Incomplete_class does not report 
  1978.   correctly class name). (Marcus, Tony)
  1979. - Fixed bug #29945 (simplexml_load_file URL limitation 255 char). (Rob)
  1980. - Fixed bug #29873 (No defines around pcntl_*priority definitions). (Derick)
  1981. - Fixed bug #29844 (SOAP doesn't return the result of a valid SOAP request).
  1982.   (Dmitry)
  1983. - Fixed bug #29842 (soapclient return null value). (Dmitry)
  1984. - Fixed bug #29839 (incorrect convert (xml:lang to lang)). (Dmitry)
  1985. - Fixed bug #29830 (SoapServer::setClass() should not export non-public
  1986.   methods). (Dmitry)
  1987. - Fixed bug #29828 (Interfaces no longer work). (Marcus)
  1988. - Fixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid
  1989.   data). (Ilia)
  1990. - Fixed bug #29808 (array_count_values() breaks with numeric strings). (Ilia)
  1991. - Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler)
  1992. - Fixed bug #29795 (SegFault with Soap and Amazon's Web Services). (Dmitry)
  1993. - Fixed bug #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE
  1994.   on error). (Tony)
  1995. - Fixed bug #29711 (Changed ext/xml to default to UTF-8 output). (Rob)
  1996. - Fixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does not
  1997.   have trailing slash). (Ilia)
  1998. - Fixed bug #29657 (xml_* functions throw non descriptive error). 
  1999.   (Christian, Rob)
  2000. - Fixed bug #29656 (segfault on result and statement properties). (Georg)
  2001. - Fixed bug #29566 (foreach/string handling strangeness (crash)). (Dmitry)
  2002. - Fixed bug #29447 (Reflection API issues). (Marcus)
  2003. - Fixed bug #29296 (Added sslv2 and sslv3 transports). (Wez)
  2004. - Fixed bug #29283 (Invalid statement handle in mysqli on execute). (Georg)
  2005. - Fixed bug #29913 (parse_url() is now binary safe). (Ilia)
  2006. - Fixed bug #27994 (segfault with Soapserver when WSDL-Cache is enabled).
  2007.   (Dmitry)
  2008. - Fixed bug #27791 (Apache 2.0 SAPI build against Apache 2 HEAD). (Joe Orton,
  2009.   Derick)
  2010. - Fixed bug #26737 (private/protected properties not serialized when user
  2011.   declared method __sleep() exists). E_NOTICE thrown when __sleep() returns
  2012.   name of non-existing member. (Andrey, Curt)
  2013.  
  2014. 12 Aug 2004, PHP 5.0.1
  2015. - Changed destructor mechanism so that destructors are called prior to request
  2016.   shutdown. (Marcus)
  2017. - Rewritten UNIX and Windows install help files. (Documentation Team)
  2018. - Updated several libraries bundled with the windows release which now 
  2019.   includes libxml2-2.6.11, libxslt-1.1.7 and iconv-1.9.1. (Rob, Edin)
  2020. - Improved and moved ActiveScript SAPI to PECL.  (Wez)
  2021. - Fixed bug #29606 (php_strip_whitespace() prints to stdout rather then
  2022.   returning the value). (Ilia)
  2023. - Fixed bug #29577 (MYSQLI_CLIENT_FOUND_ROWS undefined) (Georg)
  2024. - Fixed bug #29573 (Segmentation fault, when exception thrown within
  2025.   PHP function called from XSLT). (Christian)
  2026. - Fixed bug #29522 (accessing properties without connection) (Georg)
  2027. - Fixed bug #29505 (get_class_vars() severely broken when used with arrays).
  2028.   (Marcus)
  2029. - Fixed bug #29490 (.Net object instantiation failed). (Michael Sisolak).
  2030. - Fixed bug #29474 (win32: usleep() doesn't work). (Wez)
  2031. - Fixed bug #29449 (win32: feof() hangs on empty tcp stream). (Wez)
  2032. - Fixed bug #29437 (Possible crash inside array_walk_recursive()). (Ilia)
  2033. - Fixed bug #29431 (crash when parsing invalid address; invalid address
  2034.   returned by stream_socket_recvfrom(), stream_socket_getname()). (Wez)
  2035. - Fixed bug #29409 (Segfault in PHP functions called from XSLT). (Rob)
  2036. - Fixed unloading of dynamically loaded extensions. 
  2037.   (Marcus, kameshj at fastmail dot fm)
  2038. - Fixed bug #29395 (sqlite_escape_string() returns bogus data on empty
  2039.   strings). (Ilia, Tony)
  2040. - Fixed bug #29392 (com_dotnet crashes when echo'ing an object). (Wez)
  2041. - Fixed bug #29368 (The destructor is called when an exception is thrown from 
  2042.   the constructor). (Marcus)
  2043. - Fixed bug #29354 (Exception constructor marked as both public and protected).
  2044.   (Marcus)
  2045. - Fixed bug #29342 (strtotime() does not handle empty date string properly).
  2046.   (Ilia)
  2047. - Fixed bug #29340 (win32 build produces invalid php_ifx.dll). (Edin)
  2048. - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default) (Georg)
  2049. - Fixed bug #29291 (get_class_vars() return names with NULLs). (Marcus)
  2050. - Fixed bug #29264 (gettext extension not working). (Edin)
  2051. - Fixed bug #29258 (variant_date_from_timestamp() does not honour
  2052.   timezone).  (Wez)
  2053. - Fixed bug #29256 (error when sending large packets on a socket). (Dmitry)
  2054. - Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry)
  2055. - Fixed bug #29147 (Compile Error in mnoGoSearch functions). (Sergey, Antony)
  2056. - Fixed bug #29132 ($_SERVER["PHP_AUTH_USER"] isn't defined). (Stefan)
  2057. - Fixed bug #29119 (html_entity_decode() misbehaves with UTF-8). (Moriyoshi)
  2058. - Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry)
  2059. - Fixed bug #29061 (soap extension segfaults). (Dmitry)
  2060. - Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry)
  2061. - Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry)
  2062. - Fixed bug #28895 (ReflectionClass::isAbstract always returns false). (Marcus)
  2063. - Fixed bug #28829 (Thread-unsafety in bcmath elementary values). (Sara)
  2064. - Fixed bug #28464 (catch() does not catch exceptions by interfaces). (Marcus)
  2065. - Fixed bug #27669 (PHP 5 didn't support all possibilities for calling static
  2066.   methods dynamically). (Dmitry)
  2067. - Fixed ReflectionClass::getMethod() and ReflectionClass::getProperty() to
  2068.   raise an ReflectionException instead of returning NULL on failure.
  2069.   (Sebastian)
  2070. - Fixed convert.* filters to consume remaining buckets_in on flush. (Sara)
  2071. - Fixed bug in mysqli->client_version. (Georg)
  2072.  
  2073. 13 Jul 2004, PHP 5.0.0
  2074. - Updated PCRE to provide better error handling in certain cases. (Andrei)
  2075. - Changed doc comments to require a single white space after '/**'. (Marcus)
  2076. - Fixed bug #29019 (Database not closing). (Marcus)
  2077. - Fixed bug #29008 (array_combine() does not handle non-numeric/string keys).
  2078.   (Ilia)
  2079. - Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X). (Ilia)
  2080. - Fixed bug #28868 (Internal filter registry not thread safe). (Sara)
  2081. - Fixed bug #28851 (call_user_func_array has typo in error message). (Marcus)
  2082. - Fixed bug #28831 (ArrayObject::offsetGet() does the work of offsetUnset()). 
  2083.   (Marcus)
  2084. - Fixed bug #28822 (ArrayObject::offsetExists() works inverted). (Marcus)
  2085. - Fixed bug #28789 (ReflectionProperty getValue() fails on public static 
  2086.   members). (Marcus)
  2087. - Fixed bug #28771 (Segfault when using xslt and clone). (Rob)
  2088. - Fixed bug #28751 (SoapServer does not call _autoload()). (Dmitry)
  2089. - Fixed bug #28739 (array_*diff() and array_*intersect() not clearing the fci
  2090.   cache before work). (Andrey)
  2091. - Fixed bug #28721 (appendChild() and insertBefore() unset DOMText).(Rob)
  2092. - Fixed bug #28702 (SOAP does not parse WSDL service address correctly). (Dmitry)
  2093. - Fixed bug #28699 (Reflection api bugs). (Marcus)
  2094. - Fixed bug #28694 (ReflectionExtension::getFunctions() crashes PHP). (Marcus)
  2095. - Fixed bug #28512 (Allocate enough space to store MSSQL data). (Frank)
  2096. - Fixed strip_tags() to correctly handle '\0' characters. (Stefan)
  2097.  
  2098.