Revision tags: php-5.3.2RC1, php-5.2.12, php-5.2.12RC4 |
|
#
6ab5f53d |
| 07-Dec-2009 |
Dmitry Stogov |
Fixed bug #49866 (Making reference on string offsets crashes PHP) |
#
7a96fdff |
| 07-Dec-2009 |
Dmitry Stogov |
Fixed bug #50351 (performance regression handling objects, ten times slower in 5.3 than in 5.2. foreach statement should not initiate GC) |
Revision tags: php-5.2.12RC3, php-5.2.12RC2 |
|
#
bb179ad1 |
| 24-Nov-2009 |
Felipe Pena |
- Fixed bug #50255 (isset() and empty() silently casts array to object) |
Revision tags: php-5.3.1, php-5.3.1RC4, php-5.2.12RC1, php-5.3.1RC3 |
|
#
779ce8fd |
| 01-Nov-2009 |
Felipe Pena |
- Fixed bug #49908 (throwing exception in __autoload crashes when interface is not defined) |
Revision tags: php-5.3.1RC2, oci8-1.4.0 |
|
#
c36b27db |
| 21-Sep-2009 |
Dmitry Stogov |
Fixed memleak in tests/lang/engine_assignExecutionOrder_001.phpt |
Revision tags: php-5.2.11, php-5.2.11RC3, php-5.3.1RC1 |
|
#
4016bfcd |
| 03-Sep-2009 |
Dmitry Stogov |
Fixed bug #46074 (Bus error during running PHP CLI under IRIX 6.5.30) |
Revision tags: php-5.2.11RC2 |
|
#
d6ba6c69 |
| 18-Aug-2009 |
Stanislav Malyshev |
fix crash when unexpectedly passed by-ref parameter is modified |
#
f1ab855c |
| 18-Aug-2009 |
Dmitry Stogov |
Fixed ability to call user functions from user opcodes without recursion |
#
f694c09a |
| 17-Aug-2009 |
Dmitry Stogov |
Fixed bug #49269 (Ternary operator fails on Iterator object when used inside foreach declaration). (Etienne, Dmitry) |
Revision tags: php-5.2.11RC1 |
|
#
ff766c1d |
| 28-Jul-2009 |
Dmitry Stogov |
Fixed bug #48912 (Namespace causes unexpected strict behaviour with extract()) |
Revision tags: php-5.3.0, php-5.3.0RC4, php-5.2.10, php-5.2.10RC2, php-5.3.0RC3 |
|
#
2462fce2 |
| 07-Jun-2009 |
Matt Wilmas |
MFH: Changed error messages to use "cannot" instead of "can not" (meaning "also can") |
#
85b93278 |
| 05-Jun-2009 |
Arnaud Le Blanc |
MFH: better fix for #48409 , #48428 , #48228 |
#
b907aa43 |
| 04-Jun-2009 |
Matt Wilmas |
MFH: Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit)
MFH: Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming
show more ...
|
#
2403a580 |
| 01-Jun-2009 |
Arnaud Le Blanc |
MFH: better fix for #48409 , #48428 , #48228 |
#
bed00e15 |
| 30-May-2009 |
Arnaud Le Blanc |
MFH: Fix aliasing issue (fixes #48409 , #48428 , #48228) |
Revision tags: php-5.2.10RC1, php-5.3.0RC2 |
|
#
ae222613 |
| 08-Apr-2009 |
Dmitry Stogov |
Improved specialization (IS_CONST can't be IS_OBJECT) |
#
ab7f6d88 |
| 26-Mar-2009 |
Dmitry Stogov |
Fixed bug #47771 (Exception during object construction from arg call calls object's destructor) |
Revision tags: php-5.3.0RC1 |
|
#
3a30cfe1 |
| 18-Mar-2009 |
Dmitry Stogov |
Removed unnecassary checks |
#
daac1a62 |
| 18-Mar-2009 |
Dmitry Stogov |
Improved speed of conditional jump instructions by checking for most useful case (conditional expression) |
#
ff562052 |
| 18-Mar-2009 |
Dmitry Stogov |
Fixed bug #47704 (crashes on some "bad" operations with string offsets) Removed unnecessary checks |
Revision tags: RELEASE_1_3_5 |
|
#
e2c3c7aa |
| 10-Mar-2009 |
Dmitry Stogov |
Clenaup deprecated namespace code |
Revision tags: php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1 |
|
#
c6d89bd4 |
| 26-Jan-2009 |
Christian Seiler |
[DOC] Remove $this support in closures for PHP 5.3 beta 1 - Implementation notes here: http://wiki.php.net/rfc/closures/removal-of-this |
#
666bf10d |
| 20-Jan-2009 |
Dmitry Stogov |
Removed wrong warning message |
#
8075f2e4 |
| 15-Jan-2009 |
Dmitry Stogov |
Fixed bug #47109 (Memory leak on $a->{"a"."b"} when $a is not an object) |
#
23f7fa57 |
| 10-Jan-2009 |
Felipe Pena |
- MFH: Fixed bug #47054 (BC break in static functions called as dynamic) |