Revision tags: php-5.2.13, php-5.3.2RC3, php-5.3.2RC2, php-5.2.13RC2, php-5.2.13RC1 |
|
#
d2281d1d |
| 05-Jan-2010 |
Sebastian Bergmann |
sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php
|
Revision tags: php-5.3.2RC1, php-5.2.12, php-5.2.12RC4, php-5.2.12RC3, php-5.2.12RC2, php-5.3.1, php-5.3.1RC4, php-5.2.12RC1, php-5.3.1RC3, php-5.3.1RC2, oci8-1.4.0, php-5.2.11, php-5.2.11RC3, php-5.3.1RC1, php-5.2.11RC2, php-5.2.11RC1, php-5.3.0 |
|
#
d976be4b |
| 19-Jun-2009 |
Scott MacVicar |
Make the check case sensitive, and since we can only have a constructor that matches the class name or is __construct its probably safe to just check for __. This means we can skip lowering the f
Make the check case sensitive, and since we can only have a constructor that matches the class name or is __construct its probably safe to just check for __. This means we can skip lowering the function_name, which is hard to be binary safe sine we don't store the length. If we just did a zend_hash_exists lookup we'd be fine since its stored lowercased already :)
show more ...
|
Revision tags: php-5.3.0RC4 |
|
#
8e3aebd5 |
| 18-Jun-2009 |
Scott MacVicar |
Fix bug #48215 - Calling a method with the same name as the parent class calls the constructor instead.
|
Revision tags: php-5.2.10 |
|
#
2cb9fe1f |
| 12-Jun-2009 |
Felipe Pena |
- Constified method_name arg. in zend_get_user_call_function() and zend_get_user_callstatic_function()
|
#
5f8ca6da |
| 12-Jun-2009 |
Felipe Pena |
MFH: Fixed bug #48533 (__callStatic is not invoked for private/protected methods)
|
Revision tags: php-5.2.10RC2, php-5.3.0RC3, php-5.2.10RC1 |
|
#
db1eafa8 |
| 12-May-2009 |
Felipe Pena |
- MFH: Fixed bug #48248 (SIGSEGV when access to private property via &__get)
|
Revision tags: php-5.3.0RC2, php-5.3.0RC1, RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1 |
|
#
312176f0 |
| 14-Jan-2009 |
Dmitry Stogov |
Reverted "Rebind closure when binding to property"
|
#
26bb96e2 |
| 07-Jan-2009 |
Andrei Zmievski |
Changed __call() to be invoked on private/protected method access, similar to properties and __get().
|
#
0e131653 |
| 03-Jan-2009 |
Marcus Boerger |
- MFH Rebind closure when binding to property
|
#
08659c2d |
| 31-Dec-2008 |
Sebastian Bergmann |
MFH: Bump copyright year, 3 of 3.
|
Revision tags: NEWS, php-5.2.8, BEFORE_HEAD_NS_CHANGES_MERGE, php-5.3.0alpha3, php-5.3.0alpha2, php-5.2.7, php-5.2.7RC5 |
|
#
7d4fd3fd |
| 27-Nov-2008 |
Dmitry Stogov |
Fixed bug #46409 (__invoke method called outside of object context when using array_map)
|
Revision tags: php-5.2.7RC4, BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3, php-5.2.7RC2 |
|
#
41ad9b4d |
| 17-Oct-2008 |
Dmitry Stogov |
Fixed bug #46308 (Invalid write when changing property from inside getter)
|
Revision tags: php-5.2.7RC1 |
|
#
f90255c6 |
| 14-Aug-2008 |
Etienne Kneuss |
MFH: Handlerify get_closure
|
#
cf7384aa |
| 12-Aug-2008 |
Felipe Pena |
- MFH: Constness (Added const qualifier to several function parameters)
|
Revision tags: php-4.4.9, php-5.3.0alpha1 |
|
#
af05ce0a |
| 26-Jul-2008 |
Dmitry Stogov |
Fixed is_callable/call_user_func mess that had done different things for very similar arguments e.g. array("A","B") and "A::B"
|
Revision tags: php-4.4.9RC1, BEFORE_NEW_PARAMETER_PARSE |
|
#
cc23d3ba |
| 03-Jun-2008 |
Felipe Pena |
- Fixed bug #45089 (__callStatic $name case sensitivity)
|
#
7da75d81 |
| 27-May-2008 |
Matt Wilmas |
MFH: Add array_init_size() and use it where array size is known at initialization
|
Revision tags: RELEASE_1_2_5, RELEASE_2_0_0b1 |
|
#
a578b0cb |
| 03-May-2008 |
Felipe Pena |
- MFH: Fixed bug #44899 (__isset usage changes behavior of empty()) (patch by Etienne Kneuss)
|
Revision tags: php-5.2.6 |
|
#
2ecf4bb0 |
| 29-Apr-2008 |
Dmitry Stogov |
Lazy EG(active_symbol_table) initialization
|
Revision tags: RELEASE_1_0_2, php-5.2.6RC5, php-5.2.6RC4, php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1 |
|
#
7dd943ac |
| 17-Mar-2008 |
Antony Dovgal |
MFH: fix #39127 (Old-style constructor fallbacks produce strange results)
|
Revision tags: php-5.2.6RC2, php-5.2.6RC1 |
|
#
3e7e9d4a |
| 21-Feb-2008 |
Dmitry Stogov |
Fixed bug #44141 (private parent constructor callable through static function)
|
Revision tags: RELEASE_1_3_1, php-4.4.8 |
|
#
d1dded87 |
| 31-Dec-2007 |
Sebastian Bergmann |
MFH: Bump copyright year, 2 of 2.
|
#
1b6100f4 |
| 21-Dec-2007 |
Johannes Schlüter |
- MFH: Fix #43450 (Memory leak on some functions with implicit object __toString() call) (Davic C.)
|
Revision tags: php-4.4.8RC1, RELEASE_1_2_3 |
|
#
648fbe9d |
| 22-Nov-2007 |
Dmitry Stogov |
Fixed bug #43128 (Very long class name causes segfault)
|
#
c3ab6bd0 |
| 20-Nov-2007 |
Dmitry Stogov |
Fixed bug #43136 (possible crash on script execution timeout. The EG(function_state_ptr) is completely removed, EG(current_execute_data)->function_state must be used instead)
|