home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2006 April / DPPRO0406DVD.ISO / Essentials / Programming / PHP / php-5.1.1-Win32.exe / news.txt < prev    next >
Encoding:
Text File  |  2005-11-27  |  65.6 KB  |  1,188 lines

  1. PHP                                                                        NEWS
  2. |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
  3. 28 Nov 2005, PHP 5.1.1
  4. - Disabled native date class to prevent pear::date conflict. (Ilia)
  5. - Changed reflection constants be both PHP and class constants. (Johannes)
  6. - Added an additional field $frame['object'] to the result array of
  7.   debug_backtrace() that contains a reference to the respective object when the
  8.   frame was called from an object. (Sebastian)
  9. - Fixed bug #35423 (RecursiveDirectoryIterator doesnt appear to recurse with 
  10.   RecursiveFilterIterator). (Marcus)
  11. - Fixed bug #35413 (Removed -dev flag from Zend Engine version). (Ilia)
  12. - Fixed bug #35411 (Regression with \{$ handling). (Ilia)
  13. - Fixed bug #35406 (eval hangs when evall'ed code ends with comment w/o 
  14.   newline). (Marcus)
  15. - Fixed bug #35391 (pdo_mysql::exec does not return number of affected rows). 
  16.   (Tony)
  17. - Fixed bug #35382 (Comment in end of file produces fatal error). (Ilia)
  18. - Fixed bug #35360 (exceptions in interactive mode (php -a) may cause crash).
  19.   (Dmitry)
  20. - Fixed bug #35358 (Incorrect error messages for PDO class constants). (Ilia)
  21. - Fixed bug #35338 (pdo_pgsql does not handle binary bound params). (Wez)
  22. - Fixed bug #35316 (Application exception trying to create COM object). (Rob)
  23. - Fixed bug #35170 (PHP_AUTH_DIGEST differs under Apache 1.x and 2.x). (Ilia)
  24.  
  25. 24 Nov 2005, PHP 5.1
  26. - Added support for class constants and static members for internal classes. 
  27.   (Dmitry, Michael Wallner)
  28. - Added "new_link" parameter to mssql_connect() (Bug #34369). (Frank)
  29. - Added missing safe_mode checks for image* functions and cURL. (Ilia)
  30. - Added missing safe_mode/open_basedir checks for file uploads. (Ilia)
  31. - Added PDO_MYSQL_ATTR_USE_BUFFERED_QUERY parameter for pdo_mysql. (Ilia)
  32. - Added date_timezone_set() function to set the timezone that the date 
  33.   functions will use. (Derick)
  34. - Added pg_fetch_all_columns() function to fetch all values of a column from a 
  35.   result cursor. (Ilia)
  36. - Added support for LOCK_EX flag for file_put_contents(). (Ilia)
  37. - Added bindto socket context option. (Ilia)
  38. - Added offset parameter to the stream_copy_to_stream() function. (Ilia)
  39. - Added offset & length parameters to substr_count() function. (Ilia)
  40. - Added man pages for "phpize" and "php-config" scripts. (Jakub Vrana)
  41. - Added support for .cc files in extensions. (Brian)
  42. - Added PHP_INT_MAX and PHP_INT_SIZE as predefined constants. (Andrey)
  43. - Added user opcode API that allow overloading of opcode handlers. (Dmitry)
  44. - Added an optional remove old session parameter to session_regenerate_id().
  45.   (Ilia)
  46. - Added array type hinting. (Dmitry)
  47. - Added the tidy_get_opt_doc() function to return documentation for 
  48.   configuration options in tidy. (Patch by: nlopess@php.net)
  49. - Added support for .cc files in extensions. (Brian)
  50. - Added imageconvolution() function which can be used to apply a custom 3x3 
  51.   matrix convolution to an image. (Pierre)
  52. - Added optional first parameter to XsltProcessor::registerPHPFunctions to 
  53.   only allow certain functions to be called from XSLT. (Christian)
  54. - Added the ability to override the autotools executables used by the 
  55.   buildconf script via the PHP_AUTOCONF and PHP_AUTOHEADER environmental 
  56.   variables. (Jon)
  57. - Added several new functions to support the PostgreSQL v3 protocol introduced 
  58.   in PostgreSQL 7.4. (Christopher)
  59.   . pg_transaction_status() - in-transaction status of a database connection.
  60.   . pg_query_params() - execution of parameterized queries.
  61.   . pg_prepare() - prepare named queries.
  62.   . pg_execute() - execution of named prepared queries.
  63.   . pg_send_query_params() - async equivalent of pg_query_params().
  64.   . pg_send_prepare() - async equivalent of pg_prepare().
  65.   . pg_send_execute() - async equivalent of pg_execute().
  66.   . pg_result_error_field() - highly detailed error information, most 
  67.     importantly 
  68.     the SQLSTATE error code.
  69.   . pg_set_error_verbosity() - set verbosity of errors.
  70. - Added optional fifth parameter "count" to preg_replace_callback() and 
  71.   preg_replace() to count the number of replacements made. FR #32275. (Andrey)
  72. - Added optional third parameter "charlist" to str_word_count() which contains 
  73.   characters to be considered as word part. FR #31560. (Andrey, Ilia)
  74. - Added interface Serializable. (Stanislav, Marcus)
  75. - Added pg_field_type_oid() PostgreSQL function. (mauroi at digbang dot com)
  76. - Added zend_declare_property_...() and zend_update_property_...() API 
  77.   functions for bool, double and binary safe strings. (Hartmut)
  78. - Added possibility to access INI variables from within .ini file. (Andrei)
  79. - Added variable $_SERVER['REQUEST_TIME'] containing request start time.
  80.   (Ilia)
  81. - Added optional float parameter to gettimeofday(). (Ilia)
  82. - Added apache_reset_timeout() Apache1 function. (Rasmus)
  83. - Added sqlite_fetch_column_types() 3rd argument for arrays. (Ilia)
  84. - Added optional offset parameter to stream_get_contents() and 
  85.   file_get_contents(). (Ilia)
  86. - Added optional maxlen parameter to file_get_contents(). (Ilia)
  87. - Added SAPI hook to get the current request time. (Rasmus)
  88. - Added new functions: 
  89.   . array_diff_key() (Andrey)
  90.   . array_diff_ukey() (Andrey)
  91.   . array_intersect_key() (Christiano Duarte)
  92.   . array_intersect_ukey() (Christiano Duarte)
  93.   . array_product() (Andrey)
  94.   . DomDocumentFragment::appendXML() (Christian)
  95.   . fputcsv() (David Sklar)
  96.   . htmlspecialchars_decode() (Ilia)
  97.   . inet_pton() (Sara)
  98.   . inet_ntop() (Sara)
  99.   . mysqli::client_info property (Georg)
  100.   . posix_access() (Magnus)
  101.   . posix_mknod() (Magnus)
  102.   . SimpleXMLElement::registerXPathNamespace() (Christian)
  103.   . stream_context_get_default() (Wez)
  104.   . stream_socket_enable_crypto() (Wez)
  105.   . stream_wrapper_unregister() (Sara)
  106.   . stream_wrapper_restore() (Sara)
  107.   . stream_filter_remove() (Sara)
  108.   . time_sleep_until() (Ilia)
  109. - Added DomDocument::$recover property for parsing not well-formed XML 
  110.   Documents. (Christian)   
  111. - Added Cursor support for MySQL 5.0.x in mysqli (Georg)
  112. - Added proxy support to ftp wrapper via http. (Sara)
  113. - Added MDTM support to ftp_url_stat. (Sara)
  114. - Added zlib stream filter support. (Sara)
  115. - Added bz2 stream filter support. (Sara)
  116. - Added max_redirects context option that specifies how many HTTP 
  117.   redirects to follow. (Ilia)
  118. - Added support of parameter=>value arrays to 
  119.   xsl_xsltprocessor_set_parameter(). (Tony)
  120.  
  121. - Improved PHP extension loading mechanism with support for module 
  122.   dependencies and conflicts. (Jani, Dmitry) 
  123. - Improved interactive mode of PHP CLI (php -a). (Johannes, Marcus)
  124. - Improved performance of:
  125.   . general execution/compilation. (Andi, Thies, Sterling, Dmitry, Marcus)
  126.   . switch() statement. (Dmitry)
  127.   . several array functions. (Marcus)
  128.   . virtual path handling by adding a realpath() cache. (Andi)
  129.   . variable fetches. (Andi)
  130.   . magic method invocations. (Marcus)
  131. - Improved support for embedded server in mysqli. (Georg)
  132. - Improved mysqli extension. (Georg)
  133.   . added constructor for mysqli_stmt and mysqli_result classes
  134.   . added new function mysqli_get_charset()
  135.   . added new function mysqli_set_charset()
  136.   . added new class mysqli_driver
  137.   . added new class mysqli_warning
  138.   . added new class mysqli_exception 
  139.   . added new class mysqli_sql_exception
  140. - Improved SPL extension. (Marcus)
  141.   . Moved RecursiveArrayIterator from examples into extension
  142.   . Moved RecursiveFilterIterator from examples into extension
  143.   . Added SplObjectStorage
  144.   . Made all SPL constants class constants
  145.   . Renamed CachingRecursiveIterator to RecursiveCachingIterator to follow 
  146.     Recursive<*>Iterator naming scheme.
  147.   . added standard hierarchy of Exception classes
  148.   . added interface Countable
  149.   . added interfaces Subject and SplObserver
  150.   . added spl_autoload*() functions
  151.   . converted several 5.0 examples into c code
  152.   . added class SplFileObject
  153.   . added possibility to use a string with class_parents() and
  154.     class_implements(). (Andrey)
  155.  
  156. - Changed type hints to allow "null" as default value for class and array. 
  157.   (Marcus, Derick, Dmitry)
  158. - Changed SQLite extension to be a shared module in Windows distribution.
  159.   (Edin)
  160. - Changed "instanceof" and "catch" operators, is_a() and is_subclass_of() 
  161.   functions to not call __autoload(). (Dmitry)
  162. - Changed sha1_file() and md5_file() functions to use streams instead of low
  163.   level IO. (Uwe)
  164. - Changed abstract private methods to be not allowed anymore. (Stas)
  165. - Changed stream_filter_(ap|pre)pend() to return resource. (Sara)
  166. - Changed mysqli_exception and sqlite_exception to use RuntimeException as 
  167.   base if SPL extension is present. (Georg, Marcus)
  168.  
  169. - Upgraded bundled libraries:
  170.   . PCRE library to version 6.2. (Andrei)
  171.   . SQLite 3 library in ext/pdo_sqlite to 3.2.7. (Ilia)
  172.   . SQLite 2 library in ext/sqlite to 2.8.16. (Ilia)
  173. - Upgraded bundled libraries in Windows distribution. (Edin)
  174.   . zlib 1.2.3
  175.   . curl 7.14.0
  176.   . openssl 0.9.8
  177.   . ming 0.3b
  178.   . libpq (PostgreSQL) 8.0.1
  179.  
  180. - Implemented feature request #33452 (Year belonging to ISO week). (Derick)
  181. - Allowed return by reference from internal functions. (Marcus, Andi, Dmitry)
  182. - Rewrote strtotime() with support for timezones and many new formats. 
  183.   Implements feature requests #21399, #26694, #28088, #29150, #29585 and 
  184.   #29595. (Derick)
  185.  
  186. - Moved extensions to PECL:
  187.   . ext/cpdf        (Tony, Derick)
  188.   . ext/dio         (Jani, Derick)
  189.   . ext/fam         (Jani, Derick)
  190.   . ext/ingres_ii   (Jani, Derick)
  191.   . ext/mnogosearch (Jani, Derick)
  192.   . ext/w32api      (Jani, Derick)
  193.   . ext/yp          (Jani, Derick)
  194.   . ext/mcve        (Jani, Derick, Pierre)
  195.   . ext/oracle      (Jani, Derick)
  196.   . ext/ovrimos     (Jani, Derick, Pierre)
  197.   . ext/pfpro       (Jani, Derick, Pierre)
  198.   . ext/dbx         (Jani, Derick)
  199.   . ext/ircg        (Jani, Derick)
  200.  
  201. - Removed php_check_syntax() function which never worked properly. (Ilia)
  202. - Removed garbage manager in Zend Engine which results in more aggressive 
  203.   freeing of data. (Dmitry, Andi)
  204.  
  205. - Fixed "make test" to work for phpized extensions. (Hartmut, Jani)
  206. - Fixed Apache 2 regression with sub-request handling on non-linux systems.
  207.   (Ilia, Tony)
  208. - Fixed PDO shutdown problem (possible infinite loop running rollback on 
  209.   shutdown). (Wez)
  210. - Fixed PECL bug #3714 (PDO: beginTransaction doesn't work if you're in 
  211.   auto-commit mode). (Wez)
  212. - Fixed ZTS destruction. (Marcus)
  213. - Fixed __get/__set to allow recursive calls for different properties. (Dmitry)
  214. - Fixed a bug where stream_get_meta_data() did not return the "uri" element 
  215.   for files opened with tmpname(). (Derick)
  216. - Fixed a problem with SPL iterators aggregating the inner iterator. (Marcus)
  217. - Fixed an error in mysqli_fetch_fields (returned NULL instead of an array 
  218.   when row number > field_count). (Georg)
  219. - Fixed bug in mysql::client_version(). (Georg)
  220. - Fixed bug in mysqli extension with unsigned int(11) being represented as 
  221.   signed integer in PHP instead of string in 32bit systems. (Andrey)
  222. - Fixed bug with $HTTP_RAW_POST_DATA not getting set. (Brian)
  223. - Fixed crash inside stream_get_line() when length parameter equals 0. (Ilia)
  224. - Fixed ext/mysqli to allocate less memory when fetching bound params of type
  225.   (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey)
  226. - Fixed extension initialization to respect dependencies between extensions.
  227.   (Wez)
  228. - Fixed failing queries (FALSE returned) with mysqli_query() on 64 bit systems.
  229.   (Andrey)
  230. - Fixed fgetcsv() and fputcsv() inconsistency. (Dmitry)
  231. - Fixed inheritance check to control return by reference and pass by 
  232.   reference correctly (ArrayAccess can no longer support references correctly).
  233.   (Marcus, Andi, Dmitry)
  234. - Fixed initializing and argument checking for posix_mknod(). (Derick)
  235. - Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey)
  236. - Fixed memory corruption in pg_copy_from() in case the as_null parameter was
  237.   passed. (Derick)
  238. - Fixed memory corruption in stristr(). (Derick)
  239. - Fixed possible GLOBALS variable override when register_globals are ON.
  240.   (Ilia, Stefan)
  241. - Fixed possible INI setting leak via virtual() in Apache 2 sapi. (Ilia)
  242. - Fixed possible register_globals toggle via parse_str(). (Ilia, Stefan)
  243. - Fixed potential GLOBALS overwrite via import_request_variables() and 
  244.   possible crash and/or memory corruption. (Ilia)
  245. - Fixed segfaults when CURL callback functions throw exception. (Tony)
  246. - Fixed support for shared extensions on AIX. (Dmitry)
  247. - Fixed bug #35342 (isset(DOMNodeList->length) returns false). (Rob)
  248. - Fixed bug #35341 (Fix for bug #33760 breaks build with older curl). (Tony)
  249. - Fixed bug #35336 (crash on PDO::FETCH_CLASS + __set()). (Tony)
  250. - Fixed bug #35303 (PDO prepare() crashes with invalid parameters). (Ilia)
  251. - Fixed bug #35293 (PDO segfaults when using persistent connections). (Tony)
  252. - Fixed bug #35278 (Multiple virtual() calls crash Apache 2 php module). (Ilia)
  253. - Fixed bug #35273 (Error in mapping soap - java types). (Dmitry)
  254. - Fixed bug #35249 (compile failure when ext/readline is compiled as shared).
  255.   (Jani)
  256. - Fixed bug #35248 (sqlite_query() doesn't set error_msg when return value is 
  257.   being used). (Ilia) 
  258. - Fixed bug #35243 (php_mblen() crashes when compiled with thread-safety on 
  259.   Linux). (Patch: shulmanb at il dot ibm dot com, Jani)
  260. - Fixed bug #35239 (Objects can lose references). (Dmitry)
  261. - Fixed bug #35229 (call_user_func() crashes when argument_stack is nearly 
  262.   full). (Dmitry)
  263. - Fixed bug #35197 (Destructor is not called). (Tony)
  264. - Fixed bug #35179 (tokenizer extension needs T_HALT_COMPILER). (Greg)
  265. - Fixed bug #35176 (include()/require()/*_once() produce wrong error messages 
  266.   about main()). (Dmitry)
  267. - Fixed bug #35147 (__HALT_COMPILER() breaks with --enable-zend-multibyte).
  268.   (Dmitry, Moriyoshi)
  269. - Fixed bug #35143 (gettimeofday() ignores current time zone). (Derick)
  270. - Fixed bug #35142 (SOAP Client/Server Complex Object Support). (Dmitry)
  271. - Fixed bug #35135 (PDOStatment without related PDO object may crash). (Ilia)
  272. - Fixed bug #35091 (SoapClient leaks memory). (Dmitry)
  273. - Fixed bug #35079 (stream_set_blocking(true) toggles, not enables blocking).
  274.   (askalski at gmail dot com, Tony)
  275. - Fixed bug #35078 (configure does not find ldap_start_tls_s). (Jani)
  276. - Fixed bug #35046 (phpinfo() uses improper css enclosure). (Ilia)
  277. - Fixed bugs #35022, #35019 (Regression in the behavior of key() and 
  278.   current() functions). (Ilia)
  279. - Fixed bug #35017 (Exception thrown in error handler may cause unexpected 
  280.   behavior). (Dmitry)
  281. - Fixed bug #35014 (array_product() always returns 0). (Ilia)
  282. - Fixed bug #35009 (ZTS: Persistent resource destruct crashes when extension 
  283.   is compiled as shared). (Dmitry)
  284. - Fixed bug #34996 (ImageTrueColorToPalette() crashes when ncolors is zero).
  285.   (Tony)
  286. - Fixed bug #34982 (array_walk_recursive() modifies elements outside function
  287.   scope). (Dmitry)
  288. - Fixed bug #34977 (Compile failure on MacOSX due to use of varargs.h). (Tony)
  289. - Fixed bug #34968 (bz2 extension fails on to build on some win32 setups).
  290.  (Ilia)
  291. - Fixed bug #34965 (tidy is not binary safe). (Mike)
  292. - Fixed bug #34957 (PHP doesn't respect ACLs for access checks). (Wez)
  293. - Fixed bug #34950 (Unable to get WSDL through proxy). (Dmitry)
  294. - Fixed bug #34938 (dns_get_record() doesn't resolve long hostnames and 
  295.   leaks). (Tony)
  296. - Fixed bug #34905 (Digest authentication does not work with Apache 1). (Ilia)
  297. - Fixed bug #34902 (mysqli::character_set_name() - undefined method). (Tony)
  298. - Fixed bug #34899 (Fixed sqlite extension compile failure). (Ilia)
  299. - Fixed bug #34893 (PHP5.1 overloading, Cannot access private property).
  300.   (Dmitry)
  301. - Fixed bug #34884 (Possible crash in ext/sqlite when sqlite.assoc_case is 
  302.   being used). (Tony, Ilia)
  303. - Fixed bug #34879 (str_replace, array_map corrupt negative array indexes on 
  304.   64-bit platforms). (Dmitry)
  305. - Fixed bug #34873 (Segmentation Fault on foreach in object). (Dmitry)
  306. - Fixed bug #34856 (configure fails to detect libiconv's type). (Tony)
  307. - Fixed bug #34855 (ibase_service_attach() segfault on AMD64). 
  308.   (irie at gmx dot de, Tony)
  309. - Fixed bug #34851 (SO_RECVTIMEO and SO_SNDTIMEO socket options expect 
  310.   integer parameter on Windows). (Mike)
  311. - Fixed bug #34850 (--program-suffix and --program-prefix not included in 
  312.   man page names). (Jani)
  313. - Fixed bug #34821 (zlib encoders fail on widely varying binary data on 
  314.   windows). (Mike, Ilia)
  315. - Fixed bug #34818 (several functions crash when invalid mysqli_link object 
  316.   is passed). (Tony)
  317. - Fixed bug #34810 (mysqli::init() and others use wrong $this pointer without 
  318.   checks). (Tony)
  319. - Fixed bug #34809 (FETCH_INTO in PDO crashes without a destination object).
  320.   (Ilia)
  321. - Fixed bug #34802 (Fixed crash on object instantiation failure). (Ilia)
  322. - Fixed bug #34796 (missing SSL linking in ext/ftp when configured as shared).
  323.   (Jani)
  324. - Fixed bug #34790 (preg_match_all(), named capturing groups, variable 
  325.   assignment/return => crash). (Dmitry)
  326. - Fixed bug #34788 (SOAP Client not applying correct namespace to generated 
  327.   values). (Dmitry)
  328. - Fixed bug #34787 (SOAP Client not handling boolean types correctly). (Dmitry)
  329. - Fixed bug #34786 (2 @ results in change to error_reporting() to random 
  330.   value) (Dmitry, Tony)
  331. - Fixed bug #34785 (subclassing of mysqli_stmt does not work). (Georg)
  332. - Fixed bug #34782 (token_get_all() gives wrong result). (Dmitry)
  333. - Fixed bug #34777 (Crash in dblib when fetching non-existent error info).
  334.   (Ilia)
  335. - Fixed bug #34771 (strtotime() fails with 1-12am/pm). (Derick)
  336. - Fixed bug #34767 (Zend Engine 1 Compatibility not copying objects 
  337.   correctly). (Dmitry)
  338. - Fixed bug #34758 (PDO_DBLIB did not implement rowCount()). (Ilia)
  339. - Fixed bug #34757 (iconv_substr() gives "Unknown error" when offset > string
  340.   length). (Tony)
  341. - Fixed bug #34742 (ftp wrapper failures caused from segmented command 
  342.   transfer). (Ilia)
  343. - Fixed bug #34725 (CLI segmentation faults during cleanup). (Dmitry)
  344. - Fixed bug #34723 (array_count_values() strips leading zeroes). (Tony)
  345. - Fixed bug #34712 (zend.ze1_compatibility_mode = on segfault). (Dmitry)
  346. - Fixed bug #34704 (Infinite recursion due to corrupt JPEG). (Marcus)
  347. - Fixed bug #34678 (__call(), is_callable() and static methods). (Dmitry)
  348. - Fixed bug #34676 (missing support for strtotime("midnight") and 
  349.   strtotime("noon")). (Derick)
  350. - Fixed bug #34645 (ctype corrupts memory when validating large numbers).
  351.  (Ilia)
  352. - Fixed bug #34643 (wsdl default value has no effect). (Dmitry)
  353. - Fixed bug #34623 (Crash in pdo_mysql on longtext fields). (Ilia)
  354. - Fixed bug #34617 (zend_deactivate: objects_store used after 
  355.   zend_objects_store_destroy is called). (Dmitry)
  356. - Fixed bug #34590 (User defined PDOStatement class can't implement 
  357.   methods). (Marcus)
  358. - Fixed bug #34584 (Segfault with SPL autoload handler). (Marcus)
  359. - Fixed bug #34581 (crash with mod_rewrite). (Tony, Ilia)
  360. - Fixed bug #34565 (mb_send_mail does not fetch 
  361.   mail.force_extra_parameters). (Marco, Ilia)
  362. - Fixed bug #34557 (php -m exits with "error" 1). (Johannes)
  363. - Fixed bug #34518 (Unset doesn't separate container in CV). (Dmitry)
  364. - Fixed bug #34505 (Possible memory corruption when unmangling properties 
  365.   with empty names). (Tony)
  366. - Fixed bug #34478 (Incorrect parsing of url's fragment (#...)). (Dmitry)
  367. - Fixed bug #34467 (foreach + __get + __set inconsistency). (Dmitry)
  368. - Fixed bug #34456 (Possible crash inside pspell extension). (Ilia)
  369. - Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception). (Dmitry)
  370. - Fixed bug #34450 (Segfault when calling mysqli_close() in destructor). (Tony)
  371. - Fixed bug #34449 (ext/soap: XSD_ANYXML functionality not exposed). (Dmitry)
  372. - Fixed bug #34420 (Possible crash inside curl_multi_remove_handle()). (Ilia)
  373. - Fixed bug #34358 (Fatal error: Cannot re-assign $this). (Dmitry)
  374. - Fixed bug #34331 (php crashes when variables_order is empty). (Ilia)
  375. - Fixed bug #34321 (Possible crash in filter code). (Ilia)
  376. - Fixed bug #34311 (unserialize() crashes with chars above 191 dec). (Nuno)
  377. - Fixed bug #34310 (foreach($arr as $c->d => $x) crashes). (Dmitry)
  378. - Fixed bug #34307 (on_modify handler not called to set the default value if 
  379.   setting from php.ini was invalid). (Andrei)     
  380. - Fixed bug #34306 (wddx_serialize_value() crashes with long array keys).
  381.   (Jani)
  382. - Fixed bug #34304 (date() doesn't have a modifier for ISO Week Day). (Derick)
  383. - Fixed bug #34302 (date('W') do not return leading zeros for week 1 to 9). 
  384.   (Derick)
  385. - Fixed bug #34299 (ReflectionClass::isInstantiable() returns true for abstract
  386.   classes). (Marcus)
  387. - Fixed bug #34284 (CLI phpinfo showing html on _SERVER["argv"]). (Jani)
  388. - Fixed bug #34277 (array_filter() crashes with references and objects). 
  389.   (Dmitry)
  390. - Fixed bug #34276 (setAttributeNS doesn't work with default namespace).
  391.   (Rob)
  392. - Fixed bug #34260 (Segfault with callbacks (array_map) + overloading).
  393.   (Dmitry)
  394. - Fixed bug #34257 (lib64 not handled correctly in ming extension). (Marcus)
  395. - Fixed bug #34221 (Compiling xmlrpc as shared fails other parts). (Jani)
  396. - Fixed bug #34216 (Segfault with autoload). (Marcus)
  397. - Fixed bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler).
  398.   (Dmitry, Alex)
  399. - Fixed bug #34191 (ob_gzhandler does not enforce trailing \0). (Ilia)
  400. - Fixed bug #34156 (memory usage remains elevated after memory limit is 
  401.   reached). (Ilia)
  402. - Fixed bug #34148 (+,- and . not supported as parts of scheme). (Ilia)
  403. - Fixed bug #34137 (assigning array element by reference causes binary mess).
  404.   (Dmitry) 
  405. - Fixed bug #34103 (line numbering not maintained in dom document). (Rob)
  406. - Fixed bug #34078 (Reflection API problems in methods with boolean or 
  407.   null default values). (Tony)
  408. - Fixed bug #34068 (Numeric string as array key not cast to integer in 
  409.   wddx_deserialize()). (Ilia)
  410. - Fixed bug #34064 (arr[] as param to function in class gives invalid 
  411.   opcode). (Dmitry)
  412. - Fixed bug #34062 (Crash in catch block when many arguments are used).
  413.   (Dmitry)
  414. - Fixed bug #34052 (date('U') returns %ld not unix timestamp). (Nuno)
  415. - Fixed bug #34045 (Buffer overflow with serialized object). (Dmitry)
  416. - Fixed bug #34001 (pdo_mysql truncates numeric fields at 4 chars). (Ilia)
  417. - Fixed bug #33999 (object remains object when cast to int). (Dmitry)
  418. - Fixed bug #33996 (No information given for fatal error on passing invalid 
  419.   value to typed argument). (Dmitry)
  420. - Fixed bug #33989 (extract($GLOBALS,EXTR_REFS) crashes PHP). (Dmitry)
  421. - Fixed bug #33987 (php script as ErrorDocument causes crash in Apache 2). 
  422.   (Ilia)
  423. - Fixed bug #33967 (misuse of Exception constructor doesn't display 
  424.   errorfile). (Jani)
  425. - Fixed bug #33966 (Wrong use of reflectionproperty causes a segfault). (Tony)
  426. - Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank)
  427. - Fixed bug #33958 (duplicate cookies and magic_quotes=off may cause a crash).
  428.   (Ilia)
  429. - Fixed bug #33957 (gmdate('W')/date('W') sometimes returns wrong week number).
  430.   (Derick)
  431. - Fixed bug #33940 (array_map() fails to pass by reference when called 
  432.   recursively). (Dmitry)
  433. - Fixed bug #33917 (number_format() output with > 1 char separators). (Jani)
  434. - Fixed bug #33904 (input array keys being escaped when magic quotes is off).
  435.   (Ilia)
  436. - Fixed bug #33903 (spl_autoload_register class method). (Marcus)
  437. - Fixed bug #33899 (CLI: setting extension_dir=some/path extension=foobar.so 
  438.   does not work). (Jani)
  439. - Fixed bug #33882 (CLI was looking for php.ini in wrong path). (Hartmut)
  440. - Fixed bug #33869 (strtotime() problem with "+1days" format). (Ilia) 
  441. - Fixed bug #33841 (pdo sqlite driver forgets to update affected column 
  442.   count on execution of prepared statments). (Ilia)
  443. - Fixed bug #33837 (Informix ESQL version numbering schema changed). (Jani)
  444. - Fixed bug #33829 (mime_content_type() returns text/plain for gzip and bzip 
  445.   files). (Derick)
  446. - Fixed bug #33802 (throw Exception in error handler causes crash). (Dmitry)
  447. - Fixed bug #33771 (error_reporting falls to 0 when @ was used inside 
  448.   try/catch block). (Tony)
  449. - Fixed bug #33760 (cURL needs to implement CRYPTO_callback functions to 
  450.   prevent locking). (Mike, Ilia)
  451. - Fixed bug #33732 (Wrong behavior of constants in class and interface 
  452.   extending). (Dmitry)
  453. - Fixed bug #33723 (php_value overrides php_admin_value). (Dmitry)
  454. - Fixed bug #33720 (mb_encode_mimeheader does not work for multibyte 
  455.   chars). (Rui)
  456. - Fixed bug #33710 (ArrayAccess objects does not initialize $this). (Dmitry)
  457. - Fixed bug #33690 (Crash setting some ini directives in httpd.conf). (Rasmus)
  458. - Fixed bug #33673 (Added detection for partially uploaded files). (Ilia)
  459. - Fixed bug #33605 (substr_compare() crashes with negative offset and length).
  460.   (Tony)
  461. - Fixed bug #33597 (setcookie() "expires" date format doesn't comply with RFC).
  462.   (Tony)
  463. - Fixed bug #33588 (LDAP: RootDSE query not possible). (Jani)
  464. - Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick)
  465. - Fixed bug #33578 (strtotime() doesn't understand "11 Oct" format). (Derick)
  466. - Fixed bug #33562 (date("") crashes). (Derick)
  467. - Fixed bug #33558 (warning with nested calls to functions returning by 
  468.   reference). (Dmitry)
  469. - Fixed bug #33536 (strtotime() defaults to now even on non time string).
  470.   (Derick)
  471. - Fixed bug #33532 (Different output for strftime() and date()). (Derick)
  472. - Fixed bug #33523 (Memory leak in xmlrpc_encode_request()). (Ilia)
  473. - Fixed bug #33520 (crash if safe_mode is on and session.save_path is changed).
  474.   (Dmitry)
  475. - Fixed bug #33512 (Add missing support for isset()/unset() overloading to 
  476.   complement the property get/set methods). (Dmitry)
  477. - Fixed bug #33491 (crash after extending MySQLi internal class). (Tony)
  478. - Fixed bug #33475 (cURL handle is not closed on curl_close(). (Ilia)
  479. - Fixed bug #33469 (Compile error undefined reference to ifx_checkAPI). (Jani)
  480. - Fixed bug #33433 (strtoll not available on Tru64). (Jani, Derick)
  481. - Fixed bug #33427 (ext/odbc: check if unixODBC header file exists). (Jani)
  482. - Fixed bug #33415 (strtotime() related bugs). (Derick)
  483. - Fixed bug #33414 (Comprehensive list of incorrect days returned after 
  484.   strtotime() / date() tests). (Derick)
  485. - Fixed bug #33389 (double free() when exporting a ReflectionClass). (Marcus)
  486. - Fixed bug #33383 (crash when retrieving empty LOBs). (Tony)
  487. - Fixed bug #33382 (array_reverse() fails after *sort()),  introduced by 
  488.   zend_hash_sort() optimizations in HEAD. (Tony)
  489. - Fixed bug #33340 (CLI Crash when calling php:function from XSLT). (Rob)
  490. - Fixed bug #33326 (Cannot build extensions with phpize on Macosx). (Jani)
  491. - Fixed bug #33318 (throw 1; results in Invalid opcode 108/1/8). (Dmitry)
  492. - Fixed bug #33312 (ReflectionParameter methods do not work correctly).
  493.   (Dmitry)
  494. - Fixed bug #33299 (php:function no longer handles returned dom objects). 
  495.   (Rob, Joe Orton)
  496. - Fixed bug #33286 (nested array_walk() calls and user array compare functions
  497.   broken; FCI cache). (Andrei, patch from m.bretz@metropolis-ag.de)
  498. - Fixed bug #33277 (private method accessed by child class). (Dmitry)
  499. - Fixed bug #33268 (iconv_strlen() works only with a parameter of < 3 in
  500.   length). (Ilia)
  501. - Fixed bug #33257 (array_splice() inconsistent when passed function instead of
  502.   variable). (Dmitry)
  503. - Fixed bug #33243 (ze1_compatibility_mode does not work as expected). (Dmitry)
  504. - Fixed bug #33242 (Mangled error message when stream fails). (Derick)
  505. - Fixed bug #33222 (segfault when CURL handle is closed in a callback). (Tony)
  506. - Fixed bug #33214 (odbc_next_result does not signal SQL errors with 
  507.   2-statement SQL batches). (rich at kastle dot com, Tony)
  508. - Fixed bug #33212 ([GCC 4]: 'zend_error_noreturn' aliased to external symbol 
  509.   'zend_error'). (Dmitry)
  510. - Fixed bug #33210 (relax jpeg recursive loop protection). (Ilia)
  511. - Fixed bug #33201 (Crash when fetching some data types). (Frank)
  512. - Fixed bug #33200 (preg_replace(): magic_quotes_sybase=On makes 'e' modifier 
  513.   misbehave). (Jani)
  514. - Fixed bug #33185 (--enable-session=shared does not build). (Jani)
  515. - Fixed bug #33171 (foreach enumerates private fields declared in base 
  516.   classes). (Dmitry)
  517. - Fixed bug #33167 (Possible crash inside pg_fetch_array()). (Ilia)
  518. - Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1). (Ilia)
  519. - Fixed bug #33156 (cygwin version of setitimer doesn't accept ITIMER_PROF).
  520.   (Nuno)
  521. - Fixed bug #33153 (crash in mssql_next result). (Frank)
  522. - Fixed bug #33150 (shtool: insecure temporary file creation). (Jani)
  523. - Fixed bug #33136 (method offsetSet in class extended from ArrayObject crash
  524.   PHP). (Marcus)
  525. - Fixed bug #33125 (imagecopymergegray() produces mosaic rainbow effect). 
  526.   (Pierre)
  527. - Fixed bug #33116 (crash when assigning class name to global variable in 
  528.   __autoload). (Dmitry)
  529. - Fixed bug #33090 (mysqli_prepare() doesn't return an error). (Georg)
  530. - Fixed bug #33076 (str_ireplace() incorrectly counts result string length
  531.   and may cause segfault). (Tony)
  532. - Fixed bug #33072 (Add a safemode/open_basedir check for runtime 
  533.   "session.save_path" change using session_save_path() function). (Rasmus)
  534. - Fixed bug #33070 (Improved performance of bzdecompress() by several orders 
  535.   of magnitude). (Ilia)
  536. - Fixed bug #33059 (crash when moving xml attribute set in dtd). (Ilia)
  537. - Fixed bug #33057 (Don't send extraneous entity-headers on a 304 as per 
  538.   RFC 2616 section 10.3.5) (Rasmus, Choitel)
  539. - Fixed bug #33019 (socket errors cause memory leaks in php_strerror()).
  540.   (jwozniak23 at poczta dot onet dot pl, Tony).
  541. - Fixed bug #33017 ("make distclean" gives an error with VPATH build). (Jani)
  542. - Fixed bug #33013 ("next month" was handled wrong while parsing dates). 
  543.   (Derick)
  544. - Fixed bug #32993 (implemented Iterator function current() don't throw 
  545.   exception). (Dmitry)
  546. - Fixed bug #32981 (ReflectionMethod::getStaticVariables() causes apache2.0.54
  547.   seg fault). (Dmitry)
  548. - Fixed bug #32956 (mysql_bind_result() doesn't support MYSQL_TYPE_NULL). 
  549.   (Georg)
  550. - Fixed bug #32947 (Incorrect option for mysqli default password). (Georg)
  551. - Fixed bug #32944 (Disabling session.use_cookies doesn't prevent reading 
  552.   session cookies). (Jani, Tony)
  553. - Fixed bug #32941 (Sending structured SOAP fault kills a php). (Dmitry)
  554. - Fixed bug #32937 (open_basedir looses trailing / in the limiter).
  555.   (Adam Conrad)
  556. - Fixed bug #32936 (http redirects URLs are not checked for control chars).
  557.   (Ilia)
  558. - Fixed bug #32933 (Cannot extend class "SQLiteDatabase"). (Marcus)
  559. - Fixed bug #32932 (Oracle LDAP: ldap_get_entries(), invalid pointer). (Jani)
  560. - Fixed bug #32930 (class extending DOMDocument doesn't clone properly). (Rob)
  561. - Fixed bug #32924 (file included with "auto_prepend_file" can be included 
  562.   with require_once() or include_once()). (Stas)
  563. - Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony)
  564. - Fixed bug #32852 (Crash with singleton and __destruct when 
  565.   zend.ze1_compatibility_mode = On). (Dmitry)
  566. - Fixed bug #32833 (Invalid opcode). (Dmitry)
  567. - Fixed bug #32813 (parse_url() does not handle scheme-only urls properly).
  568.   (Ilia)
  569. - Fixed bug #32810 (temporary files not using plain file wrapper). (Ilia)
  570. - Fixed bug #32809 (Missing T1LIB support on Windows). (Edin)
  571. - Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
  572. - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
  573. - Fixed bug #32799 (crash: calling the corresponding global var during the 
  574.   destruct). (Dmitry)
  575. - Fixed bug #32776 (SOAP doesn't support one-way operations). (Dmitry)
  576. - Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas)
  577. - Fixed bug #32759 (incorrect determination of default value (COM)). (Wez)
  578. - Fixed bug #32758 (Cannot access safearray properties in VB6 objects). (Wez)
  579. - Fixed bug #32755 (Segfault in replaceChild() when DocumentFragment has no 
  580.   children). (Rob)
  581. - Fixed bug #32753 (Undefined constant SQLITE_NOTADB). (Ilia)
  582. - Fixed bug #32742 (segmentation fault when the stream with a wrapper
  583.   is not closed). (Tony, Dmitry)
  584. - Fixed bug #32699 (pg_affected_rows() was defined when it was not available).
  585.   (Derick)
  586. - Fixed bug #32686 (Require/include file in destructor causes segfault).
  587.   (Marcus)
  588. - Fixed bug #32682 (ext/mssql: Error on module shutdown when called from 
  589.   activescript). (Frank)
  590. - Fixed bug #32674 (exception in iterator causes crash). (Dmitry)
  591. - Fixed bug #32660 (Assignment by reference causes crash when field access is 
  592.   overloaded (__get)). (Dmitry)
  593. - Fixed bug #32647 (Using register_shutdown_function() with invalid callback 
  594.   can crash PHP). (Jani)
  595. - Fixed bug #32615 (Segfault in replaceChild() using fragment when 
  596.   previousSibling is NULL). (Rob)
  597. - Fixed bug #32613 (ext/snmp: use of snmp_shutdown() causes snmpapp.conf 
  598.   access errors). (Jani, ric at arizona dot edu)
  599. - Fixed bug #32608 (html_entity_decode() converts single quotes even if 
  600.   ENT_NOQUOTES is given). (Ilia)
  601. - Fixed bug #32596 (Segfault/Memory Leak by getClass (etc) in __destruct).
  602.   (Dmitry)
  603. - Fixed bug #32591 (ext/mysql: Unsatisfied symbol: ntohs with HP-UX). (Jani)
  604. - Fixed bug #32589 (possible crash inside imap_mail_compose() function).
  605.   (Ilia)
  606. - Fixed bug #32589 (Possible crash inside imap_mail_compose, with charsets).
  607.   (Ilia)
  608. - Fixed bug #32587 (Apache2: errors sent to error_log do not include 
  609.   timestamps). (Jani)
  610. - Fixed bug #32560 (configure looks for incorrect db2 library). (Tony)
  611. - Fixed bug #32553 (mmap loads only the 1st 2000000 bytes on Win32). (Ilia)
  612. - Fixed bug #32533 (proc_get_status() returns the incorrect process status).
  613.   (Ilia)
  614. - Fixed bug #32530 (chunk_split() does not append endstr if chunklen is
  615.   longer then the original string). (Ilia)
  616. - Fixed bug #32491 (File upload error - unable to create a temporary file).
  617.   (Uwe Schindler)
  618. - Fixed bug #32455 (wrong setting property to unset value). (Dmitry)
  619. - Fixed bug #32429 (method_exists() always return TRUE if __call method 
  620.   exists). (Dmitry)
  621. - Fixed bug #32428 (The @ warning error suppression operator is broken).
  622.   (Dmitry)
  623. - Fixed bug #32427 (Interfaces are not allowed 'static' access modifier).
  624.   (Dmitry)
  625. - Fixed bug #32405 (mysqli::fetch() returns bad data - 64bit problem).
  626.   (Andrey)
  627. - Fixed bug #32296 (get_class_methods() output has changed between 5.0.2 and 
  628.   5.0.3). (Dmitry)
  629. - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg)
  630. - Fixed bug #32245 (xml_parser_free() in a function assigned to the xml 
  631.   parser gives a segfault). (Rob)
  632. - Fixed bug #32179 (xmlrpc_encode() segfaults with recursive references).
  633.   (Tony)
  634. - Fixed bug #32171 (Userspace stream wrapper crashes PHP). (Tony, Dmitry)
  635. - Fixed bug #32160 (copying a file into itself leads to data loss). (Ilia)
  636. - Fixed bug #32139 (SOAP client does not auto-handle base64 encoding). (Ilia)
  637. - Fixed bug #32109 ($_POST is not populated in multi-threaded environment). 
  638.   (Moriyoshi)
  639. - Fixed bug #32080 (segfault when assigning object to itself with 
  640.   zend.ze1_compatibility_mode=On). (Dmitry)
  641. - Fixed bug #32021 (Crash caused by range('', 'z')). (Derick)
  642. - Fixed bug #32013 (ext/mysqli bind_result causes fatal error: memory limit).
  643.   (Andrey)
  644. - Fixed bug #32010 (Memory leak in mssql_fetch_batch). (fmk)
  645. - Fixed bug #32009 (crash when mssql_bind() is called more than once). (Frank)
  646. - Fixed bug #31971 (ftp_login fails on some SSL servers).
  647.   (frantisek at augusztin dot com)
  648. - Fixed bug #31887 (ISAPI: Custom 5xx error does not return correct HTTP 
  649.   response message). (Jani)
  650. - Fixed bug #31828 (Crash with zend.ze1_compatibility_mode=On). (Dmitry)
  651. - Fixed bug #31668 (multi_query works exactly every other time - multi query 
  652.   d/e flag global and not per connection). (Andrey)
  653. - Fixed bug #31636 (another crash when echoing a COM object). (Wez)
  654. - Fixed bug #31583 (php_std_date() uses short day names in non-y2k_compliance
  655.   mode). (mike at php dot net)
  656. - Fixed bug #31525 (object reference being dropped. $this getting lost).
  657.  (Stas, Dmitry)
  658. - Fixed bug #31502 (Wrong deserialization from session when using WDDX 
  659.   serializer). (Dmitry) 
  660. - Fixed bug #31478 (segfault with empty() / isset()). (Moriyoshi)
  661. - Fixed bug #31465 (False warning in unpack() when working with *). (Ilia)
  662. - Fixed bug #31363 (broken non-blocking flock()). (ian at snork dot net)
  663. - Fixed bug #31358 (Older GCC versions do not provide portable va_copy()).
  664.   (Jani)
  665. - Fixed bug #31341 (escape on curly inconsistent). (Dmitry)
  666. - Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle 
  667.   -pthread). (Jani)
  668. - Fixed bug #31213 (Side effects caused by fix of bug #29493). (Dmitry)
  669. - Fixed bug #31177 (memory leaks and corruption because of incorrect 
  670.   refcounting). (Dmitry)
  671. - Fixed bug #31158 (array_splice on $GLOBALS crashes). (Dmitry)
  672. - Fixed bug #31054 (safe_mode & open_basedir checks only check first  
  673.   include_path value). (Ilia)
  674. - Fixed bug #31033 (php:function(string, nodeset) with xsl:key crashes PHP).
  675.   (Rob)
  676. - Fixed bug #30961 (Wrong line number in ReflectionClass getStartLine()).
  677.   (Dmitry)
  678. - Fixed bug #30889 (Conflict between __get/__set and ++ operator). (Dmitry)
  679. - Fixed bug #30833 (array_count_values() modifying input array). (Tony)
  680. - Fixed bug #30828 (debug_backtrace() reports incorrect class in overridden 
  681.   methods). (Dmitry)
  682. - Fixed bug #30820 (static member conflict with $this->member silently 
  683.   ignored). (Dmitry)
  684. - Fixed bug #30819 (Better support for LDAP SASL bind). (Jani)
  685. - Fixed bug #30791 (magic methods (__sleep/__wakeup/__toString) call 
  686.   __call if object is overloaded). (Dmitry)
  687. - Fixed bug #30707 (Segmentation fault on exception in method). 
  688.   (Stas, Dmitry)
  689. - Fixed bug #30702 (cannot initialize class variable from class constant). 
  690.   (Dmitry)
  691. - Fixed bug #30578 (Output buffers flushed before calling __destruct() 
  692.   functions). (Jani)
  693. - Fixed bug #30519 (Interface not existing says Class not found). (Dmitry)
  694. - Fixed bug #30407 (Strange behavior of default arguments). (Dmitry)
  695. - Fixed bug #30394 (Assignment operators yield wrong result with __get/__set).
  696.   (Dmitry)
  697. - Fixed bug #30332 (zend.ze1_compatibility_mode isn't fully compatible with 
  698.   array_push()). (Dmitry)
  699. - Fixed bug #30162 (Catching exception in constructor causes lose of 
  700.   $this). (Dmitry)
  701. - Fixed bug #30140 (Problem with array in static properties). (Dmitry)
  702. - Fixed bug #30126 (Enhancement for error message for abstract classes).
  703.   (Marcus)
  704. - Fixed bug #30096 (gmmktime does not return the current time). (Derick)
  705. - Fixed bug #30080 (Passing array or non array of objects). (Dmitry)
  706. - Fixed bug #30052 (Crash on shutdown after odbc_pconnect()). (Edin)
  707. - Fixed bug #29983 (PHP does not explicitly set mime type & charset). (Ilia)
  708. - Fixed bug #29975 (memory leaks when set_error_handler() is used inside error
  709.   handler). (Tony)
  710. - Fixed bug #29971 (variables_order behavior). (Dmitry)
  711. - Fixed bug #29944 (Function defined in switch, crashes). (Dmitry)
  712. - Fixed bug #29896 (Backtrace argument list out of sync). (Dmitry)
  713. - Fixed bug #29728 (Reflection API Feature: Default parameter value). (Marcus)
  714. - Fixed bug #29689 (default value of protected member overrides default value
  715.   of private and other private variable problems in inherited classes). (Stas)
  716. - Fixed bug #29683 (headers_list() returns empty array). (Tony)
  717. - Fixed bug #29583 (crash when echoing a COM object). (M.Sisolak, Wez)
  718. - Fixed bug #29522 (accessing properties without connection). (Georg)
  719. - Fixed bug #29361 (var_export() producing invalid code). (Derick)
  720. - Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia)
  721. - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default). (Georg)
  722. - Fixed bug #29334 (win32 mail() provides incorrect Date: header). (Jani)
  723. - Fixed bug #29311 (calling parent constructor in mysqli). (Georg)
  724. - Fixed bug #29268 (__autoload() not called with Reflection->getClass()).
  725.   (Dmitry)
  726. - Fixed bug #29256 (SOAP HTTP Error when envelop size is more than 24345 
  727.   bytes). (Dmitry, Wez)
  728. - Fixed bug #29253 (array_diff with $GLOBALS argument fails). (Dmitry)
  729. - Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry)
  730. - Fixed bug #29210 (Function: is_callable - no support for private and 
  731.   protected classes). (Dmitry)
  732. - Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry)
  733. - Fixed bug #29104 (Function declaration in method doesn't work). (Dmitry)
  734. - Fixed bug #29061 (soap extension segfaults). (Dmitry)
  735. - Fixed bug #29015 (Incorrect behavior of member vars(non string ones)-numeric
  736.   mem vars and others). (Dmitry)
  737. - Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry)
  738. - Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry)
  739. - Fixed bug #28839 (SIGSEGV in interactive mode (php -a)).
  740.   (kameshj at fastmail dot fm)
  741. - Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani)
  742. - Fixed bug #28568 (SAPI::known_post_content_types is not thread safe).
  743.   (Moriyoshi)
  744. - Fixed bug #28377 (debug_backtrace is intermittently passing args). (Dmitry)
  745. - Fixed bug #28355 (glob wont error if dir is not readable). (Hartmut)
  746. - Fixed bug #28072 (static array with some constant keys will be incorrectly 
  747.   ordered). (Dmitry)
  748. - Fixed bug #27908 (xml default_handlers not being called). (Rob)
  749. - Fixed bug #27598 (list() array key assignment causes HUGE memory leak).
  750.   (Dmitry)
  751. - Fixed bug #27268 (Bad references accentuated by clone). (Dmitry)
  752. - Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when
  753.   called via STDIN). (Dmitry)
  754. - Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may 
  755.   result in seg fault). (Dmitry)
  756. - Fixed bug #25359 (array_multisort() doesn't work in a function if array is 
  757.   global or reference). (Dmitry)
  758. - Fixed bug #22836 (returning reference to uninitialized variable). (Dmitry)
  759. - Fixed bug #21306 (ext/sesssion: catch bailouts of write handler during 
  760.   RSHUTDOWN). (Jani, Xuefer at 21cn dot com)
  761. - Fixed bug #15854 (boolean ini options may be incorrectly displayed as Off 
  762.   when they are On). (Tony)
  763. - Fixed bugs #14561, #20382, #26090, #26320, #28024, #30532, #32086, #32270,
  764.   #32555, #32588, #33056 (strtotime() related bugs). (Derick)
  765.  
  766. 31 Mar 2005, PHP 5.0.4
  767. - Added SNMPv2 support. (harrie)
  768. - Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)
  769. - Added length and charsetnr for field array and object in mysqli. (Georg)
  770. - Added checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem()
  771.   and gmp_fact() to prevent SIGFPE. (Tony)
  772. - Changed foreach() to throw an exception if IteratorAggregate::getIterator()
  773.   does not return an Iterator. (Marcus)
  774. - Changed phpize not to require libtool. (Jani)
  775. - Updated bundled oniguruma library (used for multibyte regular expression)
  776.   to 3.7.0. (Moriyoshi)
  777. - Updated bundled libmbfl library (used for multibyte functions). (Moriyoshi)
  778.   Fixed bugs:
  779.   . Bug #32311 (mb_encode_mimeheader() does not properly escape characters)
  780.   . Bug #32063 (mb_convert_encoding ignores named entity 'alpha')
  781.   . Bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes)
  782.   . bug #30573 (compiler warnings in libmbfl due to invalid type cast)
  783.   . Bug #30549 (incorrect character translations for some ISO8859 charsets).
  784. - Fixed bug preventing from building oci8 as shared. 
  785.   (stanislav dot voroniy at portavita dot nl, Tony)
  786. - Fixed a bug in mysql_affected_rows and mysql_stmt_affected_rows when the
  787.   api function returns -1 (Georg)
  788. - Fixed several leaks in ext/browscap and sapi/embed. (Andrei)
  789. - Fixed several leaks in ext/filepro. (Tony)
  790. - Fixed build system to always use bundled libtool files. (Jani)
  791. - Fixed a bug in mysqli_stmt_execute() (type conversion with NULL values).
  792.   (Georg)
  793. - Fixed segfault in mysqli_fetch_field_direct() when invalid field offset 
  794.   is passed. (Tony)
  795. - Fixed posix_getsid() & posix_getpgid() to return sid & pgid instead 
  796.   of true. (Tony)   
  797. - Fixed bug #32394 (offsetUnset() segfaults in a foreach). (Marcus)
  798. - Fixed bug #32373 (segfault in bzopen() if supplied path to non-existent 
  799.   file). (Tony)
  800. - Fixed bug #32326 (Check values of Connection/Transfer-Encoding 
  801.   case-incentively in SOAP extension). (Ilia)
  802. - Fixed bug #32290 (call_user_func_array() calls wrong class method within 
  803.   child class). (Marcus)
  804. - Fixed bug #32238 (spl_array.c: void function cannot return value). (Johannes)
  805. - Fixed bug #32210 (proc_get_status() sets "running" always to true). (Ilia)
  806. - Fixed bug #32200 (Prevent using both --with-apxs2 and --with-apxs2filter).
  807.   (Jani)
  808. - Fixed bug #32134 (Overloading offsetGet/offsetSet). (Marcus)
  809. - Fixed bug #32130 (ArrayIterator::seek() does not throw an Exception on 
  810.   invalid index). (Marcus)
  811. - Fixed bug #32115 (dateTime SOAP encoding of timezone incorrect). (Dmitry)
  812. - Fixed bug #32081 (in mysqli default socket value is not being used). (Ilia)
  813. - Fixed bug #32021 (Crash caused by range('', 'z')). (Derick)
  814. - Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable).
  815.   (Rob)
  816. - Fixed bug #32001 (xml_parse_into_struct() function exceeds maximum 
  817.   execution time). (Rob, Moriyoshi)
  818. - Fixed bug #31980 (Unicode exif data not available on Windows). (Edin)
  819. - Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns
  820.   with NULL values). (Daniel Convissor)
  821. - Fixed bug #31878 (Segmentation fault using clone keyword on nodes). (Rob)
  822. - Fixed bug #31858 (--disable-cli does not force --without-pear). (Jani)
  823. - Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string).
  824.   (Jani)
  825. - Fixed bug #31832 (SOAP encoding problem with complex types in WSDL mode with
  826.   multiple parts). (Dmitry)
  827. - Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia)
  828. - Fixed bug #31796 (readline completion handler does not handle empty return
  829.   values). (Ilia)
  830. - Fixed bug #31792 (getrusage() does not provide ru_nswap value). (Ilia)
  831. - Fixed bug #31755 (Cannot create SOAP header in no namespace). (Dmitry)
  832. - Fixed bug #31754 (dbase_open() fails for mode = 1). (Mehdi, Derick)
  833. - Fixed bug #31751 (pg_parameter_status() missing on Windows). (Edin)
  834. - Fixed bug #31747 (SOAP Digest Authentication doesn't work with 
  835.   "HTTP/1.1 100 Continue" response). (Dmitry)
  836. - Fixed bug #31732 (mb_get_info() causes segfault when no parameters 
  837.   specified). (Tony)
  838. - Fixed bug #31710 (Wrong return values for mysqli_autocommit/commit/rollback).
  839.   (Georg)
  840. - Fixed bug #31705 (parse_url() does not recognize http://foo.com#bar). (Ilia)
  841. - Fixed bug #31695 (Cannot redefine endpoint when using WSDL). (Dmitry)
  842. - Fixed bug #31684 (dio_tcsetattr(): misconfigured termios settings).
  843.   (elod at itfais dot com)
  844. - Fixed bug #31683 (changes to $name in __get($name) override future 
  845.   parameters). (Dmitry)
  846. - Fixed bug #31699 (unserialize() float problem on non-English locales). (Ilia)
  847. - Fixed bug #31562 (__autoload() problem with static variables). (Marcus)
  848. - Fixed bug #31651 (ReflectionClass::getDefaultProperties segfaults with arrays).
  849.   (Marcus)
  850. - Fixed bug #31623 (OCILogin does not support password grace period).
  851.   (daniel dot beet at accuratesoftware dot com, Tony)
  852. - Fixed bug #31527 (crash in msg_send() when non-string is stored without
  853.   being serialized). (Ilia)
  854. - Fixed bug #31515 (Improve performance of scandir() by factor of 10 or so). (Ilia)
  855. - Fixed bug #31514 (open_basedir uses path_translated rather then cwd for .
  856.   translation). (Ilia)
  857. - Fixed bug #31480 (Possible infinite loop in imap_mail_compose()). (Ilia)
  858. - Fixed bug #31479 (Fixed crash in chunk_split(), when chunklen > strlen). (Ilia)
  859. - Fixed bug #31454 (session_set_save_handler crashes PHP when supplied 
  860.   non-existent object ref). (Tony)
  861. - Fixed bug #31444 (Memory leak in zend_language_scanner.c).
  862.   (hexer at studentcenter dot org)
  863. - Fixed bug #31442 (unserialize broken on 64-bit systems). (Marcus)
  864. - Fixed bug #31440 ($GLOBALS can be overwritten via GPC when register_globals
  865.   is enabled). (Ilia)
  866. - Fixed bug #31422 (No Error-Logging on SoapServer-Side). (Dmitry)
  867. - Fixed bug #31413 (curl POSTFIELDS crashes on 64-bit platforms). (Joe)
  868. - Fixed bug #31396 (compile fails with gd 2.0.33 without freetype). (Jani)
  869. - Fixed bug #31371 (highlight_file() trims new line after heredoc). (Ilia)
  870. - Fixed bug #31361 (simplexml/domxml segfault when adding node twice). (Rob)
  871. - Fixed bug #31348 (CachingIterator::rewind() leaks). (Marcus)
  872. - Fixed bug #31346 (ArrayIterator::next segfaults). (Marcus)
  873. - Fixed bug #31190 (Unexpected warning then exception is thrown from 
  874.   call_user_func_array()). (phpbugs at domain51 dot net, Dmitry)
  875. - Fixed bug #31142 (imap_mail_compose() fails to generate correct output). (Ilia)
  876. - Fixed bug #31139 (XML Parser Functions seem to drop & when parsing). (Rob)
  877. - Fixed bug #31398 (When magic_guotes_gpc are enabled filenames with ' get cutoff).
  878.   (Ilia)
  879. - Fixed bug #31288 (Possible crash in mysql_fetch_field(), if mysql_list_fields() 
  880.   was not called previously). (Ilia)
  881. - Fixed bug #31107, #31110, #31111, #31249 (Compile failure of zend_strtod.c).
  882.   (Jani)
  883. - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick)
  884. - Fixed bug #31107 (Compile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick)
  885. - Fixed bug #31103 (Better error message when c-client cannot be found). (Ilia)
  886. - Fixed bug #31101 (missing kerberos header file path with --with-openssl). (Jani)
  887. - Fixed bug #31098 (isset() / empty() incorrectly return true in dereference of
  888.   a string type). (Moriyoshi)
  889. - Fixed bug #31087 (broken php_url_encode_hash macro). (Ilia)
  890. - Fixed bug #31072 (var_export() does not output an array element with an empty
  891.   string key). (Derick)
  892. - Fixed bug #31060 (imageftbbox() does not use linespacing parameter). (Jani)
  893. - Fixed bug #31056 (php_std_date() returns invalid formatted date if 
  894.   y2k_compliance is On). (Ilia)
  895. - Fixed bug #31055 (apache2filter: per request leak proportional to the full
  896.   path of the request URI). (kameshj at fastmail dot fm)
  897. - Fixed bug #30901 (can't send cookies with soap envelop). (Dmitry)
  898. - Fixed bug #30871 (Misleading warning message for array_combine()). (Andrey)
  899. - Fixed bug #30868 (evaluated pointer comparison in mbregex causes compile
  900.   failure). (Moriyoshi)
  901. - Fixed bug #30862 (Static array with boolean indexes). (Marcus)
  902. - Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia)
  903. - Fixed bug #30725 (PHP segfaults when an exception is thrown in getIterator() 
  904.   within foreach). (Marcus)
  905. - Fixed bug #30609 (cURL functions bypass open_basedir). (Jani)
  906. - Fixed bug #30446 (apache2handler: virtual() includes files out of sequence)
  907. - Fixed bug #30430 (odbc_next_result() doesn't bind values and that results 
  908.   in segfault). (pdan-php at esync dot org, Tony)
  909. - Fixed bug #30266 (Invalid opcode 137/1/8). (Marcus)
  910. - Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many
  911.   parameters). (Jani)
  912. - Fixed bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught
  913.   SoapFault exception). (Dmitry)
  914. - Fixed bug #29989 (type re_registers redefined in oniguruma.h). (Moriyoshi)
  915. - Fixed bug #28803 (enabled debug causes bailout errors with CLI on AIX 
  916.   because of fflush() called on already closed filedescriptor). (Tony)
  917. - Fixed bug #29767 (Weird behaviour of __set($name, $value)). (Dmitry)
  918. - Fixed bug #29733 (printf() handles repeated placeholders wrong).
  919.   (bugs dot php dot net at bluetwanger dot de, Ilia)
  920. - Fixed bug #29424 (width and height inverted for JPEG2000 files). (Ilia)
  921. - Fixed bug #29329 (configure for mysqli with shared doesn't work). (Georg)
  922. - Fixed bug #29136 (make test - libtool failure on MacOSX). (Jani)
  923. - Fixed bug #28976 (mail(): use "From:" from headers if sendmail_from is empty).
  924.   (Jani)
  925. - Fixed bug #28930 (PHP sources pick wrong header files generated by bison).
  926.   (eggert at gnu dot org, Jani)
  927. - Fixed bug #28840 (__destruct of a class that extends mysqli not called).
  928.   (Marcus)
  929. - Fixed bug #28804 (ini-file section parsing pattern is buggy).
  930.   (wendland at scan-plus dot de)
  931. - Fixed bug #28451 (corrupt EXIF headers have unlimited recursive IFD directory
  932.   entries). (Andrei)
  933. - Fixed bug #28444 (Cannot access undefined property for object with overloaded
  934.   property access). (Dmitry)
  935. - Fixed bug #28442 (Changing a static variables in a class changes it across 
  936.   sub/super classes.) (Marcus)
  937. - Fixed bug #28324 (HTTP_SESSION_VARS appear when register_long_arrays is 
  938.   Off). (Tony)
  939. - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr stream).
  940.   (chris at ex-parrot dot com)
  941. - Fixed bug #28067 (partially incorrect utf8 to htmlentities mapping). (Derick,
  942.   Benjamin Greiner)
  943. - Fixed bug #28041 (SOAP HTTP Digest Access Authentication). (Dmitry)
  944. - Fixed bug #27633 (Double \r problem on ftp_get in ASCII mode on Win32). (Ilia)
  945. - Fixed bug #18613 (Multiple OUs in x509 certificate not handled properly).
  946.   (Jani)
  947.  
  948. 15 Dec 2004, PHP 5.0.3
  949. - Added the %F modifier to *printf to render a non-locale-aware representation
  950.   of a float with the . as decimal seperator. (Derick)
  951. - Fixed error handling in mysqli_multi_query. (Georg)
  952. - Extended the functionality of is_subclass_of() to accept either a class name
  953.   or an object as first parameter. (Andrey) 
  954. - Fixed potential problems with unserializing invalid serialize data. (Marcus)
  955. - Fixed bug #32076 (ReflectionMethod::isDestructor() always return true). 
  956.   (Derick, Tony)
  957. - Fixed bug #31034 (Problem with non-existing iconv header file). (Derick)
  958. - Fixed bug #30995 (snmp extension does not build with net-snmp 5.2). (Ilia)
  959. - Fixed bug #30994 (SOAP server unable to handle request with references).
  960.   (Dmitry)
  961. - Fixed bug #30990 (allow popen() on *NIX to accept 'b' flag). (Ilia)
  962. - Fixed bug #30967 (properties in extended mysqli classes don't work). (Georg)
  963. - Fixed bug #30928 (When Using WSDL, SoapServer doesn't handle private or
  964.   protected properties). (Dmitry)
  965. - Fixed bug #30922 (reflective functions crash PHP when interfaces extend
  966.   themselves). (Tony, Dmitry)
  967. - Fixed bug #30904 (segfault when recording soapclient into session). (Tony,
  968.   Dmitry)
  969. - Fixed bug #30890 (MySQLi testsuite)
  970. - Fixed bug #30856 (ReflectionClass::getStaticProperties segfaults). (Marcus)
  971. - Fixed bug #30832 ("!" stripped off comments in xml parser). (Rob)
  972. - Fixed bug #30799 (SoapServer doesn't handle private or protected properties).
  973.   (Dmitry)
  974. - Fixed bug #30783 (Apache crash when using ReflectionFunction::
  975.   getStaticVariables()). (Marcus)
  976. - Fixed bug #30750 (Meaningful error message when upload directory is not 
  977.   accessible). (Ilia)
  978. - Fixed bug #30685 (Malformed SOAPClient http header reequest). (Dmitry)
  979. - Fixed bug #30672 (Problem handling exif data in jpeg images at unusual 
  980.   places). (Marcus)
  981. - Fixed bug #30658 (Ensure that temporary files created by GD are removed).
  982.   (Ilia)
  983. - Fixed bug #30645 (def. multi result set support for mysql_connect). (Georg)
  984. - Fixed bug #30637 (compile with pear error). (Antony)
  985. - Fixed bug #30587 (array_multisort doesn't separate zvals before 
  986.   changing them). (Tony)
  987. - Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean).
  988.   (Andi)
  989. - Fixed bug #30566 (attribute namespace URIs are inconsistent when parsing).
  990.   (Rob)
  991. - Fixed bug #30490 (PEAR installation fails). (Antony)
  992. - Fixed bug #30475 (curl_getinfo() may crash in some situations). (Ilia)
  993. - Fixed bug #30442 (segfault when parsing ?getvariable[][ ). (Tony)
  994. - Fixed bug #30388 (rename across filesystems loses ownership and 
  995.   permission info). (Tony)
  996. - Fixed bug #30387 (stream_socket_client async connect was broken).
  997.   (vnegrier at esds dot com, Wez).
  998. - Fixed bug #30381 (Strange results with get_class_vars()). (Marcus)
  999. - Fixed bug #30375 (cal_info() does not work without a parameter). (Ilia)
  1000. - Fixed bug #30362 (stream_get_line() not handling end string correctly).
  1001.   (Ilia)
  1002. - Fixed bug #30359 (SOAP client requests have no port in "Host" field).
  1003.   (Dmitry)
  1004. - Fixed bug #30356 (str_ireplace() does not work on all strings). (Ilia)
  1005. - Fixed bug #30344 (Reflection::getModifierNames() returns too long strings).
  1006.   (Marcus)
  1007. - Fixed bug #30329 (Error Fetching http body, No Content-Length, connection
  1008.   closed or chunked data). (Dmitry)
  1009. - Fixed bug #30282 (segfault when using unknown/unsupported 
  1010.   session.save_handler and/or session.serialize_handler). (Tony)
  1011. - Fixed bug #30281 (Prevent non-wbmp images from being detected as such).
  1012.   (Ilia)
  1013. - Fixed bug #30276 (Possible crash in ctype_digit on large numbers). (Ilia)
  1014. - Fixed bug #30230 (exception handler not working with objects). (Marcus)
  1015. - Fixed bug #30224 (Sybase date strings are sometimes not null terminated).
  1016.   (Ilia)
  1017. - Fixed bug #30175 (SOAP results aren't parsed correctly). (Dmitry)
  1018. - Fixed bug #30147 (OO sqlite_fetch_object did not reset error handler). (Wez)
  1019. - Fixed bug #30133 (get_current_user() crashes on Windows). (Edin)
  1020. - Fixed bug #30061 (xml_set_start_namespace_decl_handler not called). (Rob)
  1021. - Fixed bug #30057 (did not detect IPV6 on FreeBSD 4.1). (Wez)
  1022. - Fixed bug #30042 (strtotime does not use second param). (Derick)
  1023. - Fixed bug #30027 (Possible crash inside ftp_get()).
  1024.   (cfield at affinitysolutions dot com)
  1025. - Fixed bug #29954 (array_reduce segfaults when initial value is array). (Tony)
  1026. - Fixed bug #29883 (isset gives invalid values on strings). (Tony, Dmitry)
  1027. - Fixed bug #29801 (Set limit on the size of mmapable data). (Ilia)
  1028. - Fixed bug #29557 (strtotime error). (Derick)
  1029. - Fixed bug #29418 (double free when openssl_csr_new fails).
  1030.   (Kamesh Jayachandran).
  1031. - Fixed bug #29385 (Soapserver always uses std class). (David, Dmitry)
  1032. - Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob)
  1033. - Fixed bug #28817 (Var problem when extending domDocument). (Georg)
  1034. - Fixed bug #28599 (strtotime fails with zero base time). (Derick)
  1035. - Fixed bug #28598 (Lost support for MS Symbol fonts). (Pierre)
  1036. - Fixed bug #28220 (mb_strwidth() returns wrong width values for some hangul
  1037.   characters). (Moriyoshi)
  1038. - Fixed bug #28228 (NULL decimal separator is not being handled correctly).
  1039.   (Ilia)
  1040. - Fixed bug #28209 (strtotime("now")). (Derick)
  1041. - Fixed bug #27798 (private / protected variables not exposed by 
  1042.   get_object_vars() inside class). (Marcus)
  1043. - Fixed bug #27728 (Can't return within a zend_try {} block or the previous
  1044.   bailout state isn't restored. (Andi)
  1045. - Fixed bug #27183 (Userland stream wrapper segfaults on stream_write). 
  1046.   (Christian)
  1047.  
  1048. 23 Sep 2004, PHP 5.0.2
  1049. - Added new boolean (fourth) parameter to array_slice() that turns on the
  1050.   preservation of keys in the returned array. (Derick)
  1051. - Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes
  1052.   them sort based on the current locale. (Derick)
  1053. - Added interface_exists() and make class_exists() only return true for real
  1054.   classes. (Andrey)
  1055. - Added PHP_EOL constant that contains the OS way of representing newlines.
  1056.   (Paul Hudson, Derick)
  1057. - Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory
  1058.   exhaustion. (Andrei)
  1059. - Renamed SoapClient->__call() to SoapClinet->__soapCall(). (Dmitry)
  1060. - Fixed bug with raw_post_data not getting set (Brian)
  1061. - Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev)
  1062. - Fixed bug #30209 (ReflectionClass::getMethod() lowercases attribute). 
  1063.   (Marcus)
  1064. - Fixed bug #30182 (SOAP module processing WSDL file dumps core). (Dmitry)
  1065. - Fixed bug #30045 (Cannot pass big integers (> 2147483647) in SOAP requests).
  1066.   (Dmitry)
  1067. - Fixed bug #29985 (unserialize()/ __PHP_Incomplete_class does not report 
  1068.   correctly class name). (Marcus, Tony)
  1069. - Fixed bug #29945 (simplexml_load_file URL limitation 255 char). (Rob)
  1070. - Fixed bug #29873 (No defines around pcntl_*priority definitions). (Derick)
  1071. - Fixed bug #29844 (SOAP doesn't return the result of a valid SOAP request).
  1072.   (Dmitry)
  1073. - Fixed bug #29842 (soapclient return null value). (Dmitry)
  1074. - Fixed bug #29839 (incorrect convert (xml:lang to lang)). (Dmitry)
  1075. - Fixed bug #29830 (SoapServer::setClass() should not export non-public
  1076.   methods). (Dmitry)
  1077. - Fixed bug #29828 (Interfaces no longer work). (Marcus)
  1078. - Fixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid
  1079.   data). (Ilia)
  1080. - Fixed bug #29808 (array_count_values() breaks with numeric strings). (Ilia)
  1081. - Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler)
  1082. - Fixed bug #29795 (SegFault with Soap and Amazon's Web Services). (Dmitry)
  1083. - Fixed bug #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE
  1084.   on error). (Tony)
  1085. - Fixed bug #29711 (Changed ext/xml to default to UTF-8 output). (Rob)
  1086. - Fixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does not
  1087.   have trailing slash). (Ilia)
  1088. - Fixed bug #29657 (xml_* functions throw non descriptive error). 
  1089.   (Christian, Rob)
  1090. - Fixed bug #29656 (segfault on result and statement properties). (Georg)
  1091. - Fixed bug #29566 (foreach/string handling strangeness (crash)). (Dmitry)
  1092. - Fixed bug #29447 (Reflection API issues). (Marcus)
  1093. - Fixed bug #29296 (Added sslv2 and sslv3 transports). (Wez)
  1094. - Fixed bug #29283 (Invalid statement handle in mysqli on execute). (Georg)
  1095. - Fixed bug #29913 (parse_url() is now binary safe). (Ilia)
  1096. - Fixed bug #27994 (segfault with Soapserver when WSDL-Cache is enabled).
  1097.   (Dmitry)
  1098. - Fixed bug #27791 (Apache 2.0 SAPI build against Apache 2 HEAD). (Joe Orton,
  1099.   Derick)
  1100. - Fixed bug #26737 (private/protected properties not serialized when user
  1101.   declared method __sleep() exists). E_NOTICE thrown when __sleep() returns
  1102.   name of non-existing member. (Andrey, Curt)
  1103.  
  1104. 12 Aug 2004, PHP 5.0.1
  1105. - Changed destructor mechanism so that destructors are called prior to request
  1106.   shutdown. (Marcus)
  1107. - Rewritten UNIX and Windows install help files. (Documentation Team)
  1108. - Updated several libraries bundled with the windows release which now 
  1109.   includes libxml2-2.6.11, libxslt-1.1.7 and iconv-1.9.1. (Rob, Edin)
  1110. - Improved and moved ActiveScript SAPI to PECL.  (Wez)
  1111. - Fixed bug #29606 (php_strip_whitespace() prints to stdout rather then
  1112.   returning the value). (Ilia)
  1113. - Fixed bug #29577 (MYSQLI_CLIENT_FOUND_ROWS undefined) (Georg)
  1114. - Fixed bug #29573 (Segmentation fault, when exception thrown within
  1115.   PHP function called from XSLT). (Christian)
  1116. - Fixed bug #29522 (accessing properties without connection) (Georg)
  1117. - Fixed bug #29505 (get_class_vars() severely broken when used with arrays).
  1118.   (Marcus)
  1119. - Fixed bug #29490 (.Net object instantiation failed). (Michael Sisolak).
  1120. - Fixed bug #29474 (win32: usleep() doesn't work). (Wez)
  1121. - Fixed bug #29449 (win32: feof() hangs on empty tcp stream). (Wez)
  1122. - Fixed bug #29437 (Possible crash inside array_walk_recursive()). (Ilia)
  1123. - Fixed bug #29431 (crash when parsing invalid address; invalid address
  1124.   returned by stream_socket_recvfrom(), stream_socket_getname()). (Wez)
  1125. - Fixed bug #29409 (Segfault in PHP functions called from XSLT). (Rob)
  1126. - Fixed unloading of dynamically loaded extensions. 
  1127.   (Marcus, kameshj at fastmail dot fm)
  1128. - Fixed bug #29395 (sqlite_escape_string() returns bogus data on empty
  1129.   strings). (Ilia, Tony)
  1130. - Fixed bug #29392 (com_dotnet crashes when echo'ing an object). (Wez)
  1131. - Fixed bug #29368 (The destructor is called when an exception is thrown from 
  1132.   the constructor). (Marcus)
  1133. - Fixed bug #29354 (Exception constructor marked as both public and protected).
  1134.   (Marcus)
  1135. - Fixed bug #29342 (strtotime() does not handle empty date string properly).
  1136.   (Ilia)
  1137. - Fixed bug #29340 (win32 build produces invalid php_ifx.dll). (Edin)
  1138. - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default) (Georg)
  1139. - Fixed bug #29291 (get_class_vars() return names with NULLs). (Marcus)
  1140. - Fixed bug #29264 (gettext extension not working). (Edin)
  1141. - Fixed bug #29258 (variant_date_from_timestamp() does not honour
  1142.   timezone).  (Wez)
  1143. - Fixed bug #29256 (error when sending large packets on a socket). (Dmitry)
  1144. - Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry)
  1145. - Fixed bug #29147 (Compile Error in mnoGoSearch functions). (Sergey, Antony)
  1146. - Fixed bug #29132 ($_SERVER["PHP_AUTH_USER"] isn't defined). (Stefan)
  1147. - Fixed bug #29119 (html_entity_decode() misbehaves with UTF-8). (Moriyoshi)
  1148. - Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry)
  1149. - Fixed bug #29061 (soap extension segfaults). (Dmitry)
  1150. - Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry)
  1151. - Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry)
  1152. - Fixed bug #28895 (ReflectionClass::isAbstract always returns false). (Marcus)
  1153. - Fixed bug #28829 (Thread-unsafety in bcmath elementary values). (Sara)
  1154. - Fixed bug #28464 (catch() does not catch exceptions by interfaces). (Marcus)
  1155. - Fixed bug #27669 (PHP 5 didn't support all possibilities for calling static
  1156.   methods dynamically). (Dmitry)
  1157. - Fixed ReflectionClass::getMethod() and ReflectionClass::getProperty() to
  1158.   raise an ReflectionException instead of returning NULL on failure.
  1159.   (Sebastian)
  1160. - Fixed convert.* filters to consume remaining buckets_in on flush. (Sara)
  1161. - Fixed bug in mysqli->client_version. (Georg)
  1162.  
  1163. 13 Jul 2004, PHP 5.0.0
  1164. - Updated PCRE to provide better error handling in certain cases. (Andrei)
  1165. - Changed doc comments to require a single white space after '/**'. (Marcus)
  1166. - Fixed bug #29019 (Database not closing). (Marcus)
  1167. - Fixed bug #29008 (array_combine() does not handle non-numeric/string keys).
  1168.   (Ilia)
  1169. - Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X). (Ilia)
  1170. - Fixed bug #28868 (Internal filter registry not thread safe). (Sara)
  1171. - Fixed bug #28851 (call_user_func_array has typo in error message). (Marcus)
  1172. - Fixed bug #28831 (ArrayObject::offsetGet() does the work of offsetUnset()). 
  1173.   (Marcus)
  1174. - Fixed bug #28822 (ArrayObject::offsetExists() works inverted). (Marcus)
  1175. - Fixed bug #28789 (ReflectionProperty getValue() fails on public static 
  1176.   members). (Marcus)
  1177. - Fixed bug #28771 (Segfault when using xslt and clone). (Rob)
  1178. - Fixed bug #28751 (SoapServer does not call _autoload()). (Dmitry)
  1179. - Fixed bug #28739 (array_*diff() and array_*intersect() not clearing the fci
  1180.   cache before work). (Andrey)
  1181. - Fixed bug #28721 (appendChild() and insertBefore() unset DOMText).(Rob)
  1182. - Fixed bug #28702 (SOAP does not parse WSDL service address correctly). (Dmitry)
  1183. - Fixed bug #28699 (Reflection api bugs). (Marcus)
  1184. - Fixed bug #28694 (ReflectionExtension::getFunctions() crashes PHP). (Marcus)
  1185. - Fixed bug #28512 (Allocate enough space to store MSSQL data). (Frank)
  1186. - Fixed strip_tags() to correctly handle '\0' characters. (Stefan)
  1187.  
  1188.