You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

768 lines
42 KiB

23 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
22 years ago
21 years ago
22 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
21 years ago
22 years ago
21 years ago
21 years ago
21 years ago
21 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
21 years ago
21 years ago
21 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
22 years ago
  1. PHP NEWS
  2. |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
  3. ?? Jun 2005, PHP 5.1 Beta 2
  4. - Allowed return by refrence from internal functions. (Marcus, Andi, Dmitry)
  5. - Added bindto socket context option. (Ilia)
  6. - Rewrote strtotime() with support for timezones and tons of new formats.
  7. (Derick)
  8. - Fixed PDO shutdown problem (possible inifite loop running rollback on
  9. shutdown). (Wez)
  10. - Fixed PECL bug #3714 (beginTransaction doesn't work if you're in
  11. auto-commit mode). (Wez)
  12. - Fixed bug #33340 (CLI Crash when calling php:function from XSLT). (Rob)
  13. - Fixed bug #33318 (throw 1; results in Invalid opcode 108/1/8). (Dmitry)
  14. - Fixed bug #33312 (ReflectionParameter methods do not work correctly).
  15. (Dmitry)
  16. - Fixed bug #33212 ([GCC 4]: 'zend_error_noreturn' aliased to external symbol
  17. 'zend_error'). (Dmitry)
  18. - Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle -pthread).
  19. (Jani)
  20. - Fixed bug #28355 (glob wont error if dir is not readable). (Hartmut)
  21. 10 Jun 2005, PHP 5.1 Beta 1
  22. - Upgraded PCRE library to version 5.0. (Andrei)
  23. - Removed php_check_syntax() function which never worked properly. (Ilia)
  24. - Removed garbage manager in Zend Engine which results in more aggressive
  25. freeing of data. (Dmitry, Andi)
  26. - Moved extensions to PECL:
  27. . ext/cpdf (Tony, Derick)
  28. . ext/dio (Jani, Derick)
  29. . ext/fam (Jani, Derick)
  30. . ext/ingres_ii (Jani, Derick)
  31. . ext/mnogosearch (Jani, Derick)
  32. . ext/w32api (Jani, Derick)
  33. . ext/yp (Jani, Derick)
  34. - Changed sha1_file() and md5_file() functions to use streams instead of
  35. low level IO. (Uwe)
  36. - Changed abstract private methods to be not allowed anymore. (Stas)
  37. - Changed stream_filter_(ap|pre)pend() to return resource. (Sara)
  38. - Changed mysqli_exception and sqlite_exception to use RuntimeException as base
  39. if SPL extension is present. (Georg, Marcus)
  40. - Improved interactive mode of PHP CLI (php -a). (Johannes, Marcus)
  41. - Improved performance of:
  42. . general execution/compilation. (Andi, Thies, Sterling, Dmitry, Marcus)
  43. . switch() statement. (Dmitry)
  44. . several array functions. (Marcus)
  45. . virtual path handling by adding a realpath() cache. (Andi)
  46. . variable fetches. (Andi)
  47. . magic method invocations. (Marcus)
  48. - Improved support for embedded server in mysqli. (Georg)
  49. - Improved mysqli extension. (Georg)
  50. . added constructor for mysqli_stmt and mysqli_result classes
  51. . added new function mysqli_get_charset()
  52. . added new function mysqli_set_charset()
  53. . added new class mysqli_driver
  54. . added new class mysqli_warning
  55. . added new class mysqli_execption
  56. . added new class mysqli_sql_exception
  57. - Improved SPL extension. (Marcus)
  58. . added standard hierarchy of Exception classes
  59. . added interface Countable
  60. . added interfaces Subject and Observer
  61. . added spl_autoload*() functions
  62. . converted several 5.0 examples into c code
  63. . added class FileObject
  64. . added possibility to use a string with class_parents() and
  65. class_implements(). (Andrey)
  66. - Added man pages for "phpize" and "php-config" scripts. (Jakub Vrana)
  67. - Added support for .cc files in extensions. (Brian)
  68. - Added PHP_INT_MAX and PHP_INT_SIZE as predefined constants. (Andrey)
  69. - Added user opcode API that allow overloading of opcode handlers. (Dmitry)
  70. - Added an optional remove old session parameter to session_regenerate_id(). (Ilia)
  71. - Added array type hinting. (Dmitry)
  72. - Added the tidy_get_opt_doc() function to return documentation for
  73. configuration options in tidy. (Patch by: nlopess@php.net)
  74. - Added support for .cc files in extensions. (Brian)
  75. - Added imageconvolution() function which can be used to apply a custom 3x3
  76. matrix convolution to an image. (Pierre)
  77. - Added optional first parameter to XsltProcessor::registerPHPFunctions to only
  78. allow certain functions to be called from XSLT. (Christian)
  79. - Added the ability to override the autotools executables used by the buildconf
  80. script via the PHP_AUTOCONF and PHP_AUTOHEADER environmental variables. (Jon)
  81. - Added several new functions to support the PostgreSQL v3 protocol introduced
  82. in PostgreSQL 7.4. (Christopher)
  83. . pg_transaction_status() - in-transaction status of a database connection.
  84. . pg_query_params() - execution of parameterized queries.
  85. . pg_prepare() - prepare named queries.
  86. . pg_execute() - execution of named prepared queries.
  87. . pg_send_query_params() - async equivalent of pg_query_params().
  88. . pg_send_prepare() - async equivalent of pg_prepare().
  89. . pg_send_execute() - async equivalent of pg_execute().
  90. . pg_result_error_field() - highly detailed error information,
  91. most importantly the SQLSTATE error code.
  92. . pg_set_error_verbosity() - set verbosity of errors.
  93. - Added optional fifth parameter "count" to preg_replace_callback() and
  94. preg_replace() to count the number of replacements made. FR #32275. (Andrey)
  95. - Added optional third parameter "charlist" to str_word_count() which
  96. contains characters to be considered as word part. FR #31560. (Andrey, Ilia)
  97. - Added interface Serializeable. (Stanislav, Marcus)
  98. - Added pg_field_type_oid() PostgreSQL function. (mauroi at digbang dot com)
  99. - Added zend_declare_property_...() and zend_update_property_...()
  100. API functions for bool, double and binary safe strings. (Hartmut)
  101. - Added possibility to access INI variables from within .ini file. (Andrei)
  102. - Added variable $_SERVER['REQUEST_TIME'] containing request start time. (Ilia)
  103. - Added optional float parameter to gettimeofday(). (Ilia)
  104. - Added apache_reset_timeout() Apache1 function. (Rasmus)
  105. - Added sqlite_fetch_column_types() 3rd argument for arrays. (Ilia)
  106. - Added optional offset parameter to stream_get_contents() and
  107. file_get_contents(). (Ilia)
  108. - Added optional maxlen parameter to file_get_contents(). (Ilia)
  109. - Added SAPI hook to get the current request time. (Rasmus)
  110. - Added new functions:
  111. . array_diff_key() (Andrey)
  112. . array_diff_ukey() (Andrey)
  113. . array_intersect_key() (Christiano Duarte)
  114. . array_intersect_ukey() (Christiano Duarte)
  115. . array_product() (Andrey)
  116. . DomDocumentFragment::appendXML() (Christian)
  117. . fputcsv() (David Sklar)
  118. . htmlspecialchars_decode() (Ilia)
  119. . inet_pton() (Sara)
  120. . inet_ntop() (Sara)
  121. . mysqli::client_info property (Georg)
  122. . posix_access() (Magnus)
  123. . posix_mknod() (Magnus)
  124. . SimpleXMLElement::registerXPathNamespace() (Christian)
  125. . stream_context_get_default() (Wez)
  126. . stream_socket_enable_crypto() (Wez)
  127. . stream_wrapper_unregister() (Sara)
  128. . stream_wrapper_restore() (Sara)
  129. . stream_filter_remove() (Sara)
  130. . time_sleep_until() (Ilia)
  131. - Added DomDocument::$recover property for parsing not well-formed
  132. XML Documents. (Christian)
  133. - Added Cursor support for MySQL 5.0.x in mysqli (Georg)
  134. - Added proxy support to ftp wrapper via http. (Sara)
  135. - Added MDTM support to ftp_url_stat. (Sara)
  136. - Added zlib stream filter support. (Sara)
  137. - Added bz2 stream filter support. (Sara)
  138. - Added HTTP/1.1 and chunked encoding support to http:// wrapper. (Sara)
  139. - Added max_redirects context option that specifies how many HTTP
  140. redirects to follow. (Ilia)
  141. - Added support of parameter=>value arrays to xsl_xsltprocessor_set_parameter().
  142. (Tony)
  143. - Fixed extension initialization to respect dependancies between extensions.
  144. (Wez)
  145. - Fixed ext/mysqli to allocate less memory when fetching bound params
  146. of type (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey)
  147. - Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey)
  148. - Fixed memory corruption in stristr(). (Derick)
  149. - Fixed segfaults when CURL callback functions throw exception. (Tony)
  150. - Fixed a problem with SPL iterators aggregating the innner iterator. (Marcus)
  151. - Fixed bug with $HTTP_RAW_POST_DATA not getting set. (Brian)
  152. - Fixed bug in mysql::client_version(). (Georg)
  153. - Fixed ZTS destruction. (Marcus)
  154. - Fixed bug #33268 (iconv_strlen() works only with a parameter of < 3 in
  155. length). (Ilia)
  156. - Fixed bug #33243 (ze1_compatibility_mode does not work as expected). (Dmitry)
  157. - Fixed bug #33242 (Mangled error message when stream fails). (Derick)
  158. - Fixed bug #33222 (segfault when CURL handle is closed in a callback). (Tony)
  159. - Fixed bug #33214 (odbc_next_result does not signal SQL errors with
  160. 2-statement SQL batches). (rich at kastle dot com, Tony)
  161. - Fixed bug #33210 (relax jpeg recursive loop protection). (Ilia)
  162. - Fixed bug #33200 (preg_replace(): magic_quotes_sybase=On makes 'e' modifier
  163. misbehave). (Jani)
  164. - Fixed bug #33185 (--enable-session=shared does not build). (Jani)
  165. - Fixed bug #33171 (foreach enumerates private fields declared in base
  166. classes). (Dmitry)
  167. - Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1). (Ilia)
  168. - Fixed bug #33116 (crash when assigning class name to global variable in
  169. __autoload). (Dmitry)
  170. - Fixed bug #33090 (mysqli_prepare() doesn't return an error). (Georg)
  171. - Fixed bug #33076 (str_ireplace() incorrectly counts result string length
  172. and may cause segfault). (Tony)
  173. - Fixed bug #33072 (Add a safemode/open_basedir check for runtime
  174. "session.save_path" change using session_save_path() function). (Rasmus)
  175. - Fixed bug #33070 (Improved performance of bzdecompress() by several orders
  176. of magnitude). (Ilia)
  177. - Fixed bug #33059 (crash when moving xml attribute set in dtd). (Ilia)
  178. - Fixed bug #33057 (Don't send extraneous entity-headers on a 304 as per
  179. RFC 2616 section 10.3.5) (Rasmus, Choitel)
  180. - Fixed bug #33019 (socket errors cause memory leaks in php_strerror()).
  181. (jwozniak23 at poczta dot onet dot pl, Tony).
  182. - Fixed bug #33017 ("make distclean" gives an error with VPATH build). (Jani)
  183. - Fixed bug #33013 ("next month" was handled wrong while parsing dates).
  184. (Derick)
  185. - Fixed bug #32993 (implemented Iterator function current() don't throw
  186. exception). (Dmitry)
  187. - Fixed bug #32956 (mysql_bind_result() doesn't support MYSQL_TYPE_NULL). (Georg)
  188. - Fixed bug #32947 (Incorrect option for mysqli default password). (Georg)
  189. - Fixed bug #32944 (Disabling session.use_cookies doesn't prevent reading
  190. session cookies). (Jani, Tony)
  191. - Fixed bug #32941 (Sending structured SOAP fault kills a php). (Dmitry)
  192. - Fixed bug #32936 (http redirects URLs are not checked for control chars). (Ilia)
  193. - Fixed bug #32933 (Cannot extend class "SQLiteDatabase"). (Marcus)
  194. - Fixed bug #32932 (Oracle LDAP: ldap_get_entries(), invalid pointer). (Jani)
  195. - Fixed bug #32930 (class extending DOMDocument doesn't clone properly). (Rob)
  196. - Fixed bug #32924 (file included with "auto_prepend_file" can be included
  197. with require_once() or include_once()). (Stas)
  198. - Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony)
  199. - Fixed bug #32852 (Crash with singleton and __destruct when
  200. zend.ze1_compatibility_mode = On). (Dmitry)
  201. - Fixed bug #32833 (Invalid opcode). (Dmitry)
  202. - Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). (Ilia)
  203. - Fixed bug #32810 (temporary files not using plain file wrapper). (Ilia)
  204. - Fixed bug #32809 (Missing T1LIB support on Windows). (Edin)
  205. - Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
  206. - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
  207. - Fixed bug #32799 (crash: calling the corresponding global var during the
  208. destruct). (Dmitry)
  209. - Fixed bug #32776 (SOAP doesn't support one-way operations). (Dmitry)
  210. - Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas)
  211. - Fixed bug #32759 (incorrect determination of default value (COM)). (Wez)
  212. - Fixed bug #32758 (Cannot access safearray properties in VB6 objects). (Wez)
  213. - Fixed bug #32755 (Segfault in replaceChild() when DocumentFragment has
  214. no children). (Rob)
  215. - Fixed bug #32753 (Undefined constant SQLITE_NOTADB). (Ilia)
  216. - Fixed bug #32742 (segmentation fault when the stream with a wrapper
  217. is not closed). (Tony, Dmitry)
  218. - Fixed bug #32699 (pg_affected_rows() was defined when it was not available).
  219. (Derick)
  220. - Fixed bug #32686 (Require/include file in destructor causes segfault).
  221. (Marcus)
  222. - Fixed bug #32682 (ext/mssql: Error on module shutdown when called from
  223. activescript). (Frank)
  224. - Fixed bug #32674 (exception in iterator causes crash). (Dmitry)
  225. - Fixed bug #32647 (Using register_shutdown_function() with invalid callback
  226. can crash PHP). (Jani)
  227. - Fixed bug #32615 (Segfault in replaceChild() using fragment when
  228. previousSibling is NULL). (Rob)
  229. - Fixed bug #32613 (ext/snmp: use of snmp_shutdown() causes snmpapp.conf
  230. access errors). (Jani, ric at arizona dot edu)
  231. - Fixed bug #32608 (html_entity_decode() converts single quotes even if
  232. ENT_NOQUOTES is given). (Ilia)
  233. - Fixed bug #32596 (Segfault/Memory Leak by getClass (etc) in __destruct).
  234. (Dmitry)
  235. - Fixed bug #32591 (ext/mysql: Unsatisfied symbol: ntohs with HP-UX). (Jani)
  236. - Fixed bug #32589 (Possible crash inside imap_mail_compose, with charsets).
  237. (Ilia)
  238. - Fixed bug #32587 (Apache2: errors sent to error_log do not include
  239. timestamps). (Jani)
  240. - Fixed bug #32560 (configure looks for incorrect db2 library). (Tony)
  241. - Fixed bug #32553 (mmap loads only the 1st 2000000 bytes on Win32). (Ilia)
  242. - Fixed bug #32533 (proc_get_status() returns the incorrect process status). (Ilia)
  243. - Fixed bug #32530 (chunk_split() does not append endstr if chunklen is
  244. longer then the original string). (Ilia)
  245. - Fixed bug #32491 (File upload error - unable to create a temporary file).
  246. (Uwe Schindler)
  247. - Fixed bug #32429 (method_exists() always return TRUE if __call method
  248. exists). (Dmitry)
  249. - Fixed bug #32428 (The @ warning error supression operator is broken).
  250. (Dmitry)
  251. - Fixed bug #32427 (Interfaces are not allowed 'static' access modifier).
  252. (Dmitry)
  253. - Fixed bug #32405 (mysqli::fetch() returns bad data - 64bit problem). (Andrey)
  254. - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg)
  255. - Fixed bug #32296 (get_class_methods() output has changed between 5.0.2 and
  256. 5.0.3). (Dmitry)
  257. - Fixed bug #32245 (xml_parser_free() in a function assigned to the xml parser
  258. gives a segfault). (Rob)
  259. - Fixed bug #32171 (Userspace stream wrapper crashes PHP). (Tony, Dmitry)
  260. - Fixed bug #32109 ($_POST is not populated in multithreaded environment).
  261. (Moriyoshi)
  262. - Fixed bug #32080 (segfault when assigning object to itself with
  263. zend.ze1_compatibility_mode=On). (Dmitry)
  264. - Fixed bug #32021 (Crash caused by range('', 'z')). (Derick)
  265. - Fixed bug #32013 (ext/mysqli bind_result causes fatal error: memory
  266. limit). (Andrey)
  267. - Fixed bug #31887 (ISAPI: Custom 5xx error does not return correct HTTP
  268. response message). (Jani)
  269. - Fixed bug #31828 (Crash with zend.ze1_compatibility_mode=On). (Dmitry)
  270. - Fixed bug #31668 (multi_query works exactly every other time - multi query
  271. d/e flag global and not per connection). (Andrey)
  272. - Fixed bug #31636 (another crash when echoing a COM object). (Wez)
  273. - Fixed bug #31583 (php_std_date() uses short day names in non-y2k_compliance
  274. mode). (mike at php dot net)
  275. - Fixed bug #31525 (object reference being dropped. $this getting lost).
  276. (Stas, Dmitry)
  277. - Fixed bug #31502 (Wrong deserialization from session when using WDDX
  278. serializer). (Dmitry)
  279. - Fixed bug #31478 (segfault with empty() / isset()). (Moriyoshi)
  280. - Fixed bug #31465 (False warning in unpack() when working with *). (Ilia)
  281. - Fixed bug #31363 (broken non-blocking flock()). (ian at snork dot net)
  282. - Fixed bug #31033 (php:function(string, nodeset) with xsl:key crashes PHP).
  283. (Rob)
  284. - Fixed bug #30961 (Wrong linenumber in ReflectionClass getStartLine()).
  285. (Dmitry)
  286. - Fixed bug #30889 (Conflict between __get/__set and ++ operator). (Dmitry)
  287. - Fixed bug #30833 (array_count_values() modifying input array). (Tony)
  288. - Fixed bug #30820 (static member conflict with $this->member silently
  289. ignored). (Dmitry)
  290. - Fixed bug #30819 (Better support for LDAP SASL bind). (Jani)
  291. - Fixed bug #30791 (magic methods (__sleep/__wakeup/__toString) call __call if
  292. object is overloaded). (Dmitry)
  293. - Fixed bug #30707 (Segmentation fault on exception in method). (Stas, Dmitry)
  294. - Fixed bug #30702 (cannot initialize class variable from class constant).
  295. (Dmitry)
  296. - Fixed bug #30578 (Output buffers flushed before calling __desctruct()
  297. functions). (Jani)
  298. - Fixed bug #30407 (Strange behaviour of default arguments). (Dmitry)
  299. - Fixed bug #30394 (Assignment operators yield wrong result with __get/__set).
  300. (Dmitry)
  301. - Fixed bug #30332 (zend.ze1_compatibility_mode isnt fully compatable with
  302. array_push()). (Dmitry)
  303. - Fixed bug #30162 (Catching exception in constructor causes lose of $this).
  304. (Dmitry)
  305. - Fixed bug #30140 (Problem with array in static properties). (Dmitry)
  306. - Fixed bug #30126 (Enhancement for error message for abstract classes).
  307. (Marcus)
  308. - Fixed bug #30080 (Passing array or non array of objects). (Dmitry)
  309. - Fixed bug #29975 (memory leaks when set_error_handler() is used inside error
  310. handler). (Tony)
  311. - Fixed bug #29971 (variables_order behaviour). (Dmitry)
  312. - Fixed bug #29944 (Function defined in switch, crashes). (Dmitry)
  313. - Fixed bug #29728 (Reflection API Feature: Default parameter value). (Marcus)
  314. - Fixed bug #29689 (default value of protected member overrides default value of
  315. private and other private variable problems in inherited classes). (Stas)
  316. - Fixed bug #29583 (crash when echoing a COM object). (M.Sisolak, Wez)
  317. - Fixed bug #29522 (accessing properties without connection). (Georg)
  318. - Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia)
  319. - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default). (Georg)
  320. - Fixed bug #29311 (calling parent constructor in mysqli). (Georg)
  321. - Fixed bug #29256 (SOAP HTTP Error when envelop size is more than 24345 bytes).
  322. (Dmitry, Wez)
  323. - Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry)
  324. - Fixed bug #29210 (Function: is_callable - no support for private and
  325. protected classes). (Dmitry)
  326. - Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry)
  327. - Fixed bug #29104 (Function declaration in method doesn't work). (Dmitry)
  328. - Fixed bug #29061 (soap extension segfaults). (Dmitry)
  329. - Fixed bug #29015 (Incorrect behavior of member vars(non string ones)-numeric
  330. mem vars und others). (Dmitry)
  331. - Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry)
  332. - Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry)
  333. - Fixed bug #28839 (SIGSEGV in interactive mode (php -a)).
  334. (kameshj at fastmail dot fm)
  335. - Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani)
  336. - Fixed bug #28568 (SAPI::known_post_content_types is not thread safe).
  337. (Moriyoshi)
  338. - Fixed bug #27598 (list() array key assignment causes HUGE memory leak).
  339. (Dmitry)
  340. - Fixed bug #26456 (Wrong results from Reflection-API getDocComment() when
  341. called via STDIN). (Dmitry)
  342. - Fixed bug #25922 (In error handler, modifying 5th arg (errcontext) may result
  343. in seg fault). (Dmitry)
  344. - Fixed bug #22836 (returning reference to uninitialized variable). (Dmitry)
  345. 31 Mar 2005, PHP 5.0.4
  346. - Added SNMPv2 support. (harrie)
  347. - Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)
  348. - Added length and charsetnr for field array and object in mysqli. (Georg)
  349. - Added checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem()
  350. and gmp_fact() to prevent SIGFPE. (Tony)
  351. - Changed foreach() to throw an exception if IteratorAggregate::getIterator()
  352. does not return an Iterator. (Marcus)
  353. - Changed phpize not to require libtool. (Jani)
  354. - Updated bundled oniguruma library (used for multibyte regular expression)
  355. to 3.7.0. (Moriyoshi)
  356. - Updated bundled libmbfl library (used for multibyte functions). (Moriyoshi)
  357. Fixed bugs:
  358. . Bug #32311 (mb_encode_mimeheader() does not properly escape characters)
  359. . Bug #32063 (mb_convert_encoding ignores named entity 'alpha')
  360. . Bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes)
  361. . bug #30573 (compiler warnings in libmbfl due to invalid type cast)
  362. . Bug #30549 (incorrect character translations for some ISO8859 charsets).
  363. - Fixed bug preventing from building oci8 as shared.
  364. (stanislav dot voroniy at portavita dot nl, Tony)
  365. - Fixed a bug in mysql_affected_rows and mysql_stmt_affected_rows when the
  366. api function returns -1 (Georg)
  367. - Fixed several leaks in ext/browscap and sapi/embed. (Andrei)
  368. - Fixed several leaks in ext/filepro. (Tony)
  369. - Fixed build system to always use bundled libtool files. (Jani)
  370. - Fixed a bug in mysqli_stmt_execute() (type conversion with NULL values).
  371. (Georg)
  372. - Fixed segfault in mysqli_fetch_field_direct() when invalid field offset
  373. is passed. (Tony)
  374. - Fixed posix_getsid() & posix_getpgid() to return sid & pgid instead
  375. of true. (Tony)
  376. - Fixed bug #32394 (offsetUnset() segfaults in a foreach). (Marcus)
  377. - Fixed bug #32373 (segfault in bzopen() if supplied path to non-existent
  378. file). (Tony)
  379. - Fixed bug #32326 (Check values of Connection/Transfer-Encoding
  380. case-incentively in SOAP extension). (Ilia)
  381. - Fixed bug #32290 (call_user_func_array() calls wrong class method within
  382. child class). (Marcus)
  383. - Fixed bug #32238 (spl_array.c: void function cannot return value). (Johannes)
  384. - Fixed bug #32210 (proc_get_status() sets "running" always to true). (Ilia)
  385. - Fixed bug #32200 (Prevent using both --with-apxs2 and --with-apxs2filter).
  386. (Jani)
  387. - Fixed bug #32134 (Overloading offsetGet/offsetSet). (Marcus)
  388. - Fixed bug #32130 (ArrayIterator::seek() does not throw an Exception on
  389. invalid index). (Marcus)
  390. - Fixed bug #32115 (dateTime SOAP encoding of timezone incorrect). (Dmitry)
  391. - Fixed bug #32081 (in mysqli default socket value is not being used). (Ilia)
  392. - Fixed bug #32021 (Crash caused by range('', 'z')). (Derick)
  393. - Fixed bug #32011 (Fragments which replaced Nodes are not globaly useable).
  394. (Rob)
  395. - Fixed bug #32001 (xml_parse_into_struct() function exceeds maximum
  396. execution time). (Rob, Moriyoshi)
  397. - Fixed bug #31980 (Unicode exif data not available on Windows). (Edin)
  398. - Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns
  399. with NULL values). (Daniel Convissor)
  400. - Fixed bug #31878 (Segmentation fault using clone keyword on nodes). (Rob)
  401. - Fixed bug #31858 (--disable-cli does not force --without-pear). (Jani)
  402. - Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string).
  403. (Jani)
  404. - Fixed bug #31832 (SOAP encoding problem with complex types in WSDL mode with
  405. multiple parts). (Dmitry)
  406. - Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia)
  407. - Fixed bug #31796 (readline completion handler does not handle empty return
  408. values). (Ilia)
  409. - Fixed bug #31792 (getrusage() does not provide ru_nswap value). (Ilia)
  410. - Fixed bug #31755 (Cannot create SOAP header in no namespace). (Dmitry)
  411. - Fixed bug #31754 (dbase_open() fails for mode = 1). (Mehdi, Derick)
  412. - Fixed bug #31751 (pg_parameter_status() missing on Windows). (Edin)
  413. - Fixed bug #31747 (SOAP Digest Authentication doesn't work with
  414. "HTTP/1.1 100 Continue" response). (Dmitry)
  415. - Fixed bug #31732 (mb_get_info() causes segfault when no parameters
  416. specified). (Tony)
  417. - Fixed bug #31710 (Wrong return values for mysqli_autocommit/commit/rollback).
  418. (Georg)
  419. - Fixed bug #31705 (parse_url() does not recognize http://foo.com#bar). (Ilia)
  420. - Fixed bug #31695 (Cannot redefine endpoint when using WSDL). (Dmitry)
  421. - Fixed bug #31684 (dio_tcsetattr(): misconfigured termios settings).
  422. (elod at itfais dot com)
  423. - Fixed bug #31683 (changes to $name in __get($name) override future
  424. parameters). (Dmitry)
  425. - Fixed bug #31699 (unserialize() float problem on non-English locales). (Ilia)
  426. - Fixed bug #31562 (__autoload() problem with static variables). (Marcus)
  427. - Fixed bug #31651 (ReflectionClass::getDefaultProperties segfaults with arrays).
  428. (Marcus)
  429. - Fixed bug #31623 (OCILogin does not support password grace period).
  430. (daniel dot beet at accuratesoftware dot com, Tony)
  431. - Fixed bug #31527 (crash in msg_send() when non-string is stored without
  432. being serialized). (Ilia)
  433. - Fixed bug #31515 (Improve performance of scandir() by factor of 10 or so). (Ilia)
  434. - Fixed bug #31514 (open_basedir uses path_translated rather then cwd for .
  435. translation). (Ilia)
  436. - Fixed bug #31480 (Possible infinite loop in imap_mail_compose()). (Ilia)
  437. - Fixed bug #31479 (Fixed crash in chunk_split(), when chunklen > strlen). (Ilia)
  438. - Fixed bug #31454 (session_set_save_handler crashes PHP when supplied
  439. non-existent object ref). (Tony)
  440. - Fixed bug #31444 (Memory leak in zend_language_scanner.c).
  441. (hexer at studentcenter dot org)
  442. - Fixed bug #31442 (unserialize broken on 64-bit systems). (Marcus)
  443. - Fixed bug #31440 ($GLOBALS can be overwritten via GPC when register_globals
  444. is enabled). (Ilia)
  445. - Fixed bug #31422 (No Error-Logging on SoapServer-Side). (Dmitry)
  446. - Fixed bug #31413 (curl POSTFIELDS crashes on 64-bit platforms). (Joe)
  447. - Fixed bug #31396 (compile fails with gd 2.0.33 without freetype). (Jani)
  448. - Fixed bug #31371 (highlight_file() trims new line after heredoc). (Ilia)
  449. - Fixed bug #31361 (simplexml/domxml segfault when adding node twice). (Rob)
  450. - Fixed bug #31348 (CachingIterator::rewind() leaks). (Marcus)
  451. - Fixed bug #31346 (ArrayIterator::next segfaults). (Marcus)
  452. - Fixed bug #31190 (Unexpected warning then exception is thrown from
  453. call_user_func_array()). (phpbugs at domain51 dot net, Dmitry)
  454. - Fixed bug #31142 (imap_mail_compose() fails to generate correct output). (Ilia)
  455. - Fixed bug #31139 (XML Parser Functions seem to drop &amp; when parsing). (Rob)
  456. - Fixed bug #31398 (When magic_guotes_gpc are enabled filenames with ' get cutoff).
  457. (Ilia)
  458. - Fixed bug #31288 (Possible crash in mysql_fetch_field(), if mysql_list_fields()
  459. was not called previously). (Ilia)
  460. - Fixed bug #31107, #31110, #31111, #31249 (Compile failure of zend_strtod.c).
  461. (Jani)
  462. - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick)
  463. - Fixed bug #31107 (Compile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick)
  464. - Fixed bug #31103 (Better error message when c-client cannot be found). (Ilia)
  465. - Fixed bug #31101 (missing kerberos header file path with --with-openssl). (Jani)
  466. - Fixed bug #31098 (isset() / empty() incorrectly return true in dereference of
  467. a string type). (Moriyoshi)
  468. - Fixed bug #31087 (broken php_url_encode_hash macro). (Ilia)
  469. - Fixed bug #31072 (var_export() does not output an array element with an empty
  470. string key). (Derick)
  471. - Fixed bug #31060 (imageftbbox() does not use linespacing parameter). (Jani)
  472. - Fixed bug #31056 (php_std_date() returns invalid formatted date if
  473. y2k_compliance is On). (Ilia)
  474. - Fixed bug #31055 (apache2filter: per request leak proportional to the full
  475. path of the request URI). (kameshj at fastmail dot fm)
  476. - Fixed bug #30901 (can't send cookies with soap envelop). (Dmitry)
  477. - Fixed bug #30871 (Misleading warning message for array_combine()). (Andrey)
  478. - Fixed bug #30868 (evaluated pointer comparison in mbregex causes compile
  479. failure). (Moriyoshi)
  480. - Fixed bug #30862 (Static array with boolean indexes). (Marcus)
  481. - Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia)
  482. - Fixed bug #30725 (PHP segfaults when an exception is thrown in getIterator()
  483. within foreach). (Marcus)
  484. - Fixed bug #30609 (cURL functions bypass open_basedir). (Jani)
  485. - Fixed bug #30446 (apache2handler: virtual() includes files out of sequence)
  486. - Fixed bug #30430 (odbc_next_result() doesn't bind values and that results
  487. in segfault). (pdan-php at esync dot org, Tony)
  488. - Fixed bug #30266 (Invalid opcode 137/1/8). (Marcus)
  489. - Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many
  490. parameters). (Jani)
  491. - Fixed bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught
  492. SoapFault exception). (Dmitry)
  493. - Fixed bug #29989 (type re_registers redefined in oniguruma.h). (Moriyoshi)
  494. - Fixed bug #28803 (enabled debug causes bailout errors with CLI on AIX
  495. because of fflush() called on already closed filedescriptor). (Tony)
  496. - Fixed bug #29767 (Weird behaviour of __set($name, $value)). (Dmitry)
  497. - Fixed bug #29733 (printf() handles repeated placeholders wrong).
  498. (bugs dot php dot net at bluetwanger dot de, Ilia)
  499. - Fixed bug #29424 (width and height inverted for JPEG2000 files). (Ilia)
  500. - Fixed bug #29329 (configure for mysqli with shared doesn't work). (Georg)
  501. - Fixed bug #29136 (make test - libtool failure on MacOSX). (Jani)
  502. - Fixed bug #28976 (mail(): use "From:" from headers if sendmail_from is empty).
  503. (Jani)
  504. - Fixed bug #28930 (PHP sources pick wrong header files generated by bison).
  505. (eggert at gnu dot org, Jani)
  506. - Fixed bug #28840 (__destruct of a class that extends mysqli not called).
  507. (Marcus)
  508. - Fixed bug #28804 (ini-file section parsing pattern is buggy).
  509. (wendland at scan-plus dot de)
  510. - Fixed bug #28451 (corrupt EXIF headers have unlimited recursive IFD directory
  511. entries). (Andrei)
  512. - Fixed bug #28444 (Cannot access undefined property for object with overloaded
  513. property access). (Dmitry)
  514. - Fixed bug #28442 (Changing a static variables in a class changes it across
  515. sub/super classes.) (Marcus)
  516. - Fixed bug #28324 (HTTP_SESSION_VARS appear when register_long_arrays is
  517. Off). (Tony)
  518. - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr stream).
  519. (chris at ex-parrot dot com)
  520. - Fixed bug #28067 (partially incorrect utf8 to htmlentities mapping). (Derick,
  521. Benjamin Greiner)
  522. - Fixed bug #28041 (SOAP HTTP Digest Access Authentication). (Dmitry)
  523. - Fixed bug #27633 (Double \r problem on ftp_get in ASCII mode on Win32). (Ilia)
  524. - Fixed bug #18613 (Multiple OUs in x509 certificate not handled properly).
  525. (Jani)
  526. 15 Dec 2004, PHP 5.0.3
  527. - Added the %F modifier to *printf to render a non-locale-aware representation
  528. of a float with the . as decimal seperator. (Derick)
  529. - Fixed error handling in mysqli_multi_query. (Georg)
  530. - Extended the functionality of is_subclass_of() to accept either a class name
  531. or an object as first parameter. (Andrey)
  532. - Fixed potential problems with unserializing invalid serialize data. (Marcus)
  533. - Fixed bug #32076 (ReflectionMethod::isDestructor() always return true).
  534. (Derick, Tony)
  535. - Fixed bug #31034 (Problem with non-existing iconv header file). (Derick)
  536. - Fixed bug #30995 (snmp extension does not build with net-snmp 5.2). (Ilia)
  537. - Fixed bug #30994 (SOAP server unable to handle request with references).
  538. (Dmitry)
  539. - Fixed bug #30990 (allow popen() on *NIX to accept 'b' flag). (Ilia)
  540. - Fixed bug #30967 (properties in extended mysqli classes don't work). (Georg)
  541. - Fixed bug #30928 (When Using WSDL, SoapServer doesn't handle private or
  542. protected properties). (Dmitry)
  543. - Fixed bug #30922 (reflective functions crash PHP when interfaces extend
  544. themselves). (Tony, Dmitry)
  545. - Fixed bug #30904 (segfault when recording soapclient into session). (Tony,
  546. Dmitry)
  547. - Fixed bug #30890 (MySQLi testsuite)
  548. - Fixed bug #30856 (ReflectionClass::getStaticProperties segfaults). (Marcus)
  549. - Fixed bug #30832 ("!" stripped off comments in xml parser). (Rob)
  550. - Fixed bug #30799 (SoapServer doesn't handle private or protected properties).
  551. (Dmitry)
  552. - Fixed bug #30783 (Apache crash when using ReflectionFunction::
  553. getStaticVariables()). (Marcus)
  554. - Fixed bug #30750 (Meaningful error message when upload directory is not
  555. accessible). (Ilia)
  556. - Fixed bug #30685 (Malformed SOAPClient http header reequest). (Dmitry)
  557. - Fixed bug #30672 (Problem handling exif data in jpeg images at unusual
  558. places). (Marcus)
  559. - Fixed bug #30658 (Ensure that temporary files created by GD are removed).
  560. (Ilia)
  561. - Fixed bug #30645 (def. multi result set support for mysql_connect). (Georg)
  562. - Fixed bug #30637 (compile with pear error). (Antony)
  563. - Fixed bug #30587 (array_multisort doesn't separate zvals before
  564. changing them). (Tony)
  565. - Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean).
  566. (Andi)
  567. - Fixed bug #30566 (attribute namespace URIs are inconsistent when parsing).
  568. (Rob)
  569. - Fixed bug #30490 (PEAR installation fails). (Antony)
  570. - Fixed bug #30475 (curl_getinfo() may crash in some situations). (Ilia)
  571. - Fixed bug #30442 (segfault when parsing ?getvariable[][ ). (Tony)
  572. - Fixed bug #30388 (rename across filesystems loses ownership and
  573. permission info). (Tony)
  574. - Fixed bug #30387 (stream_socket_client async connect was broken).
  575. (vnegrier at esds dot com, Wez).
  576. - Fixed bug #30381 (Strange results with get_class_vars()). (Marcus)
  577. - Fixed bug #30375 (cal_info() does not work without a parameter). (Ilia)
  578. - Fixed bug #30362 (stream_get_line() not handling end string correctly).
  579. (Ilia)
  580. - Fixed bug #30359 (SOAP client requests have no port in "Host" field).
  581. (Dmitry)
  582. - Fixed bug #30356 (str_ireplace() does not work on all strings). (Ilia)
  583. - Fixed bug #30344 (Reflection::getModifierNames() returns too long strings).
  584. (Marcus)
  585. - Fixed bug #30329 (Error Fetching http body, No Content-Length, connection
  586. closed or chunked data). (Dmitry)
  587. - Fixed bug #30282 (segfault when using unknown/unsupported
  588. session.save_handler and/or session.serialize_handler). (Tony)
  589. - Fixed bug #30281 (Prevent non-wbmp images from being detected as such).
  590. (Ilia)
  591. - Fixed bug #30276 (Possible crash in ctype_digit on large numbers). (Ilia)
  592. - Fixed bug #30230 (exception handler not working with objects). (Marcus)
  593. - Fixed bug #30224 (Sybase date strings are sometimes not null terminated).
  594. (Ilia)
  595. - Fixed bug #30175 (SOAP results aren't parsed correctly). (Dmitry)
  596. - Fixed bug #30147 (OO sqlite_fetch_object did not reset error handler). (Wez)
  597. - Fixed bug #30133 (get_current_user() crashes on Windows). (Edin)
  598. - Fixed bug #30061 (xml_set_start_namespace_decl_handler not called). (Rob)
  599. - Fixed bug #30057 (did not detect IPV6 on FreeBSD 4.1). (Wez)
  600. - Fixed bug #30042 (strtotime does not use second param). (Derick)
  601. - Fixed bug #30027 (Possible crash inside ftp_get()).
  602. (cfield at affinitysolutions dot com)
  603. - Fixed bug #29954 (array_reduce segfaults when initial value is array). (Tony)
  604. - Fixed bug #29883 (isset gives invalid values on strings). (Tony, Dmitry)
  605. - Fixed bug #29801 (Set limit on the size of mmapable data). (Ilia)
  606. - Fixed bug #29557 (strtotime error). (Derick)
  607. - Fixed bug #29418 (double free when openssl_csr_new fails).
  608. (Kamesh Jayachandran).
  609. - Fixed bug #29385 (Soapserver always uses std class). (David, Dmitry)
  610. - Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob)
  611. - Fixed bug #28817 (Var problem when extending domDocument). (Georg)
  612. - Fixed bug #28599 (strtotime fails with zero base time). (Derick)
  613. - Fixed bug #28598 (Lost support for MS Symbol fonts). (Pierre)
  614. - Fixed bug #28220 (mb_strwidth() returns wrong width values for some hangul
  615. characters). (Moriyoshi)
  616. - Fixed bug #28228 (NULL decimal separator is not being handled correctly).
  617. (Ilia)
  618. - Fixed bug #28209 (strtotime("now")). (Derick)
  619. - Fixed bug #27798 (private / protected variables not exposed by
  620. get_object_vars() inside class). (Marcus)
  621. - Fixed bug #27728 (Can't return within a zend_try {} block or the previous
  622. bailout state isn't restored. (Andi)
  623. - Fixed bug #27183 (Userland stream wrapper segfaults on stream_write).
  624. (Christian)
  625. 23 Sep 2004, PHP 5.0.2
  626. - Added new boolean (fourth) parameter to array_slice() that turns on the
  627. preservation of keys in the returned array. (Derick)
  628. - Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes
  629. them sort based on the current locale. (Derick)
  630. - Added interface_exists() and make class_exists() only return true for real
  631. classes. (Andrey)
  632. - Added PHP_EOL constant that contains the OS way of representing newlines.
  633. (Paul Hudson, Derick)
  634. - Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory
  635. exhaustion. (Andrei)
  636. - Renamed SoapClient->__call() to SoapClinet->__soapCall(). (Dmitry)
  637. - Fixed bug with raw_post_data not getting set (Brian)
  638. - Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev)
  639. - Fixed bug #30209 (ReflectionClass::getMethod() lowercases attribute).
  640. (Marcus)
  641. - Fixed bug #30182 (SOAP module processing WSDL file dumps core). (Dmitry)
  642. - Fixed bug #30045 (Cannot pass big integers (> 2147483647) in SOAP requests).
  643. (Dmitry)
  644. - Fixed bug #29985 (unserialize()/ __PHP_Incomplete_class does not report
  645. correctly class name). (Marcus, Tony)
  646. - Fixed bug #29945 (simplexml_load_file URL limitation 255 char). (Rob)
  647. - Fixed bug #29873 (No defines around pcntl_*priority definitions). (Derick)
  648. - Fixed bug #29844 (SOAP doesn't return the result of a valid SOAP request).
  649. (Dmitry)
  650. - Fixed bug #29842 (soapclient return null value). (Dmitry)
  651. - Fixed bug #29839 (incorrect convert (xml:lang to lang)). (Dmitry)
  652. - Fixed bug #29830 (SoapServer::setClass() should not export non-public
  653. methods). (Dmitry)
  654. - Fixed bug #29828 (Interfaces no longer work). (Marcus)
  655. - Fixed bug #29821 (Fixed possible crashes in convert_uudecode() on invalid
  656. data). (Ilia)
  657. - Fixed bug #29808 (array_count_values() breaks with numeric strings). (Ilia)
  658. - Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler)
  659. - Fixed bug #29795 (SegFault with Soap and Amazon's Web Services). (Dmitry)
  660. - Fixed bug #29737 (ip2long should return -1 if IP is 255.255.255.255 and FALSE
  661. on error). (Tony)
  662. - Fixed bug #29711 (Changed ext/xml to default to UTF-8 output). (Rob)
  663. - Fixed bug #29678 (opendir() with ftp:// wrapper segfaults if path does not
  664. have trailing slash). (Ilia)
  665. - Fixed bug #29657 (xml_* functions throw non descriptive error).
  666. (Christian, Rob)
  667. - Fixed bug #29656 (segfault on result and statement properties). (Georg)
  668. - Fixed bug #29566 (foreach/string handling strangeness (crash)). (Dmitry)
  669. - Fixed bug #29447 (Reflection API issues). (Marcus)
  670. - Fixed bug #29296 (Added sslv2 and sslv3 transports). (Wez)
  671. - Fixed bug #29283 (Invalid statement handle in mysqli on execute). (Georg)
  672. - Fixed bug #29913 (parse_url() is now binary safe). (Ilia)
  673. - Fixed bug #27994 (segfault with Soapserver when WSDL-Cache is enabled).
  674. (Dmitry)
  675. - Fixed bug #27791 (Apache 2.0 SAPI build against Apache 2 HEAD). (Joe Orton,
  676. Derick)
  677. - Fixed bug #26737 (private/protected properties not serialized when user
  678. declared method __sleep() exists). E_NOTICE thrown when __sleep() returns
  679. name of non-existing member. (Andrey, Curt)
  680. 12 Aug 2004, PHP 5.0.1
  681. - Changed destructor mechanism so that destructors are called prior to request
  682. shutdown. (Marcus)
  683. - Rewritten UNIX and Windows install help files. (Documentation Team)
  684. - Updated several libraries bundled with the windows release which now
  685. includes libxml2-2.6.11, libxslt-1.1.7 and iconv-1.9.1. (Rob, Edin)
  686. - Improved and moved ActiveScript SAPI to PECL. (Wez)
  687. - Fixed bug #29606 (php_strip_whitespace() prints to stdout rather then
  688. returning the value). (Ilia)
  689. - Fixed bug #29577 (MYSQLI_CLIENT_FOUND_ROWS undefined) (Georg)
  690. - Fixed bug #29573 (Segmentation fault, when exception thrown within
  691. PHP function called from XSLT). (Christian)
  692. - Fixed bug #29522 (accessing properties without connection) (Georg)
  693. - Fixed bug #29505 (get_class_vars() severely broken when used with arrays).
  694. (Marcus)
  695. - Fixed bug #29490 (.Net object instantiation failed). (Michael Sisolak).
  696. - Fixed bug #29474 (win32: usleep() doesn't work). (Wez)
  697. - Fixed bug #29449 (win32: feof() hangs on empty tcp stream). (Wez)
  698. - Fixed bug #29437 (Possible crash inside array_walk_recursive()). (Ilia)
  699. - Fixed bug #29431 (crash when parsing invalid address; invalid address
  700. returned by stream_socket_recvfrom(), stream_socket_getname()). (Wez)
  701. - Fixed bug #29409 (Segfault in PHP functions called from XSLT). (Rob)
  702. - Fixed unloading of dynamically loaded extensions.
  703. (Marcus, kameshj at fastmail dot fm)
  704. - Fixed bug #29395 (sqlite_escape_string() returns bogus data on empty
  705. strings). (Ilia, Tony)
  706. - Fixed bug #29392 (com_dotnet crashes when echo'ing an object). (Wez)
  707. - Fixed bug #29368 (The destructor is called when an exception is thrown from
  708. the constructor). (Marcus)
  709. - Fixed bug #29354 (Exception constructor marked as both public and protected).
  710. (Marcus)
  711. - Fixed bug #29342 (strtotime() does not handle empty date string properly).
  712. (Ilia)
  713. - Fixed bug #29340 (win32 build produces invalid php_ifx.dll). (Edin)
  714. - Fixed bug #29335 (fetch functions now use MYSQLI_BOTH as default) (Georg)
  715. - Fixed bug #29291 (get_class_vars() return names with NULLs). (Marcus)
  716. - Fixed bug #29264 (gettext extension not working). (Edin)
  717. - Fixed bug #29258 (variant_date_from_timestamp() does not honour
  718. timezone). (Wez)
  719. - Fixed bug #29256 (error when sending large packets on a socket). (Dmitry)
  720. - Fixed bug #29236 (memory error when wsdl-cache is enabled). (Dmitry)
  721. - Fixed bug #29147 (Compile Error in mnoGoSearch functions). (Sergey, Antony)
  722. - Fixed bug #29132 ($_SERVER["PHP_AUTH_USER"] isn't defined). (Stefan)
  723. - Fixed bug #29119 (html_entity_decode() misbehaves with UTF-8). (Moriyoshi)
  724. - Fixed bug #29109 (SoapFault exception: [WSDL] Out of memory). (Dmitry)
  725. - Fixed bug #29061 (soap extension segfaults). (Dmitry)
  726. - Fixed bug #28985 (__getTypes() returning nothing on complex WSDL). (Dmitry)
  727. - Fixed bug #28969 (Wrong data encoding of special characters). (Dmitry)
  728. - Fixed bug #28895 (ReflectionClass::isAbstract always returns false). (Marcus)
  729. - Fixed bug #28829 (Thread-unsafety in bcmath elementary values). (Sara)
  730. - Fixed bug #28464 (catch() does not catch exceptions by interfaces). (Marcus)
  731. - Fixed bug #27669 (PHP 5 didn't support all possibilities for calling static
  732. methods dynamically). (Dmitry)
  733. - Fixed ReflectionClass::getMethod() and ReflectionClass::getProperty() to
  734. raise an ReflectionException instead of returning NULL on failure.
  735. (Sebastian)
  736. - Fixed convert.* filters to consume remaining buckets_in on flush. (Sara)
  737. - Fixed bug in mysqli->client_version. (Georg)
  738. 13 Jul 2004, PHP 5.0.0
  739. - Updated PCRE to provide better error handling in certain cases. (Andrei)
  740. - Changed doc comments to require a single white space after '/**'. (Marcus)
  741. - Fixed bug #29019 (Database not closing). (Marcus)
  742. - Fixed bug #29008 (array_combine() does not handle non-numeric/string keys).
  743. (Ilia)
  744. - Fixed bug #28999 (fixed behaviour of exec() to work as it did in 4.X). (Ilia)
  745. - Fixed bug #28868 (Internal filter registry not thread safe). (Sara)
  746. - Fixed bug #28851 (call_user_func_array has typo in error message). (Marcus)
  747. - Fixed bug #28831 (ArrayObject::offsetGet() does the work of offsetUnset()).
  748. (Marcus)
  749. - Fixed bug #28822 (ArrayObject::offsetExists() works inverted). (Marcus)
  750. - Fixed bug #28789 (ReflectionProperty getValue() fails on public static
  751. members). (Marcus)
  752. - Fixed bug #28771 (Segfault when using xslt and clone). (Rob)
  753. - Fixed bug #28751 (SoapServer does not call _autoload()). (Dmitry)
  754. - Fixed bug #28739 (array_*diff() and array_*intersect() not clearing the fci
  755. cache before work). (Andrey)
  756. - Fixed bug #28721 (appendChild() and insertBefore() unset DOMText).(Rob)
  757. - Fixed bug #28702 (SOAP does not parse WSDL service address correctly). (Dmitry)
  758. - Fixed bug #28699 (Reflection api bugs). (Marcus)
  759. - Fixed bug #28694 (ReflectionExtension::getFunctions() crashes PHP). (Marcus)
  760. - Fixed bug #28512 (Allocate enough space to store MSSQL data). (Frank)
  761. - Fixed strip_tags() to correctly handle '\0' characters. (Stefan)