#
c5f06eff |
| 28-Jan-2011 |
Adam Harvey |
Fixed bug #53854 (Missing constants for compression type). Patch by Richard Quadling. |
#
4a946a91 |
| 25-Jan-2011 |
Gustavo André dos Santos Lopes |
- Fixed CHARSET_UNICODE_COMPAT (ISO-8859-1 is compatible in the relevant sense). - Fixed usage of zend_multibyte_get_internal_encoding (its return cannot be cast to char*). - Change tes
- Fixed CHARSET_UNICODE_COMPAT (ISO-8859-1 is compatible in the relevant sense). - Fixed usage of zend_multibyte_get_internal_encoding (its return cannot be cast to char*). - Change tests to reflect that charset detection now relies on internal_encoding, not on current_internal_encoding. NOTE: This fixes the changes in rev 306077, but it remains that that change introduced a BC break. I assumed it was intentional
show more ...
|
#
2e3e65c5 |
| 19-Jan-2011 |
Philip Olson |
Fixed a couple of trivial typos |
#
5ba90aef |
| 17-Jan-2011 |
Kalle Sommer Nielsen |
Added 'catalog' to the field fetching functions in mysqli (Thanks to Johannes for the headsup) |
#
5d23cdd6 |
| 17-Jan-2011 |
Kalle Sommer Nielsen |
MFT: Implemented FR #47802 (Support for setting character sets in DSN strings) |
#
478e5d1d |
| 09-Jan-2011 |
Stefan Marr |
Added trait_exists() [TRAITS] [DOC] - also changed class_exists() to return false for traits - added related tests, and get_declared_traits() tests in ext/s/t/co |
#
69a3575b |
| 07-Jan-2011 |
Kalle Sommer Nielsen |
Implemented FR #39847 (mysqli_fetch_[field|fields|field_direct] need to return db) |
#
e4c36b05 |
| 07-Jan-2011 |
Kalle Sommer Nielsen |
Implemented FR #47802, support for character sets in DSN strings for PDO_MYSQL |
Revision tags: php-5.2.17 |
|
#
3571c955 |
| 06-Jan-2011 |
Adam Harvey |
Implement request #53659 (Implementing RegexIterator::getRegex() method). Patch by Joshua Thijssen. |
Revision tags: php-5.3.5 |
|
#
6144da7e |
| 31-Dec-2010 |
Scott MacVicar |
Silently casting an empty string, null or false into an object by adding a property is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts. Since we can'
Silently casting an empty string, null or false into an object by adding a property is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts. Since we can't break BC completely (yet) lets bump this from E_STRICT. Also added a new section to UPGRADING for engine changes. <?php $x = ''; // $x = null; // $x = false; $x->baz = 1; var_dump($x); $y = 1; $y->baz = 1; var_dump($y);
show more ...
|
#
064a2544 |
| 23-Dec-2010 |
Peter Cowburn |
Implemented FR #48767 (SplFileInfo::getExtension()) |
Revision tags: php-5.2.16 |
|
#
8398646d |
| 10-Dec-2010 |
Gustavo André dos Santos Lopes |
- I had forgotten to commit UPGRADING (for enable_post_data_processing). |
Revision tags: php-5.2.15, php-5.3.4 |
|
#
d2263d48 |
| 03-Dec-2010 |
Adam Harvey |
Implement FR #53457 (number_format must support more than one character for thousands separator). |
Revision tags: php-5.2.15RC2, php-5.3.4RC2 |
|
#
22d461df |
| 30-Nov-2010 |
Gustavo André dos Santos Lopes |
- Implemented bug/request #53427 - stream_select doesn't preserve the keys. This cannot be backported to PHP 5.3 due to a BC break. See UPGRADING for more information. |
#
9a1568c1 |
| 26-Nov-2010 |
Adam Harvey |
Implemented FR #53407 (make scandir()'s directory sorting optional). |
#
c9e54156 |
| 24-Nov-2010 |
Dmitry Stogov |
Removed support for break/continue $var syntax |
#
ab93d8c6 |
| 24-Nov-2010 |
Dmitry Stogov |
Added multibyte suppport by default. Previosly php had to be compiled with --enable-zend-multibyte. Now it can be enabled or disabled throug zend.multibyte directive in php.ini |
#
e245652b |
| 19-Nov-2010 |
Johannes Schlüter |
- commit missing upgrading note (sqlite removed) |
Revision tags: php-5.3.4RC1, php-5.2.15RC1, PHP_5_2_15RC1 |
|
#
6791197b |
| 18-Nov-2010 |
Jani Taskinen |
- Added section for build system changes in UPGRADING.INTERNALS |
#
c9581c1b |
| 17-Nov-2010 |
Jani Taskinen |
typo |
#
d310d102 |
| 17-Nov-2010 |
Jani Taskinen |
- Added comment about binary SAPIs |
#
6cb7ea40 |
| 09-Nov-2010 |
Adam Harvey |
Implemented FR #53264 (Add fputcsv method to SplFileObject). |
#
cd26f6300 |
| 07-Nov-2010 |
Pierre Joye |
- typo |
#
12167194 |
| 07-Nov-2010 |
Ilia Alshanetsky |
REQUEST_TIME notes |
#
83657396 |
| 05-Nov-2010 |
Adam Harvey |
Implemented FR #53238 (Make third parameter of preg_match_all optional). |