#
08fa8849 |
| 21-Jul-2004 |
Marcus Boerger |
- Fixded #29291: get_class_vars() return names with NULLs
|
Revision tags: RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8 |
|
#
6d182a84 |
| 18-Jun-2004 |
George Schlossnagle |
fix for 28213. class_name and call_type should be reinitialized on every loop iter.
|
#
96a8b638 |
| 17-Jun-2004 |
Sara Golemon |
String length in parse_parameters should be int
|
Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7 |
|
#
877ecb3c |
| 28-May-2004 |
Derick Rethans |
- Make the default mask for user defined error handlers include ALL errors, including E_STRICT.
|
Revision tags: php-5.0.0RC3RC1, php-4.3.7RC1 |
|
#
ef987864 |
| 23-May-2004 |
Andi Gutmans |
- Fix the following script (it crashed): <?php class ErrorHandler { function __construct() { set_error_handler(array(&$this, 'handle')); } functi
- Fix the following script (it crashed): <?php class ErrorHandler { function __construct() { set_error_handler(array(&$this, 'handle')); } function __destruct() { restore_error_handler(); } function handle($code, $msg, $file, $line, $locals) { } } new ErrorHandler(); ?>
show more ...
|
Revision tags: RELEASE_0_1_1 |
|
#
953a0996 |
| 27-Apr-2004 |
Marcus Boerger |
- Optional parameter to class_exists() that can be used to bypass __autoload() which can be helpfull in __autoload() itself.
|
#
5fff6fa3 |
| 25-Apr-2004 |
Marcus Boerger |
Skip correct amount of stack entries
|
Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1 |
|
#
2310acb5 |
| 13-Apr-2004 |
Zeev Suraski |
Fix debug_backtrace to show arguments again We need to merge code from debug_backtrace & debug_print_backtrace at some point!
|
Revision tags: php-4.3.6RC3 |
|
#
c534a9e7 |
| 07-Apr-2004 |
Andi Gutmans |
- Hopefully fix the debug_backtrace() code.
|
#
7264ffe5 |
| 07-Apr-2004 |
Andi Gutmans |
- Fix crash bug in zend_debug_backtrace(). No idea how come this survived - for so long....
|
Revision tags: php-4.3.6RC2 |
|
#
8838b38f |
| 03-Apr-2004 |
Andi Gutmans |
Patch by Timm Friebe: It changes set_exception_handler() to accept the pseudo-type "callable" (instead of a string referring to a global function). Examples: set_excep
Patch by Timm Friebe: It changes set_exception_handler() to accept the pseudo-type "callable" (instead of a string referring to a global function). Examples: set_exception_handler('function_name'); set_exception_handler(array('class_name', 'static_method')); set_exception_handler(array($instance, 'instance_method')); This also makes set_exception_handler() more consistent with all the other callback functionality, e.g. set_error_handler().
show more ...
|
#
c85843ae |
| 01-Apr-2004 |
Ilia Alshanetsky |
MFB: Revert patch for bug #27782.
|
Revision tags: php-4.3.6RC1 |
|
#
ec4655f8 |
| 30-Mar-2004 |
Ilia Alshanetsky |
Fixed bug #27782 (Wrong behaviour of next(), prev() and each()).
|
#
afe794c0 |
| 29-Mar-2004 |
Marcus Boerger |
Allow mixed case search for extensions
|
Revision tags: php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1 |
|
#
4efbb350 |
| 14-Mar-2004 |
Marcus Boerger |
Make object parameter optional
|
#
47cb3323 |
| 14-Mar-2004 |
Andi Gutmans |
- Fixing bug #27123
|
Revision tags: RELEASE_0_2_0 |
|
#
a84efbe9 |
| 01-Mar-2004 |
Derick Rethans |
- Fixed bug #27443 (defined() returns wrong type).
|
#
b87a2452 |
| 25-Feb-2004 |
foobar |
ws + cs
|
Revision tags: php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1 |
|
#
a72c1ab9 |
| 10-Jan-2004 |
Zeev Suraski |
Added error mask to set_error_handler() Patch by Christian Schneider <cschneid@cschneid.com>
|
#
ccfc46b0 |
| 08-Jan-2004 |
foobar |
- Happy new year and PHP 5 for rest of the files too.. # Should the LICENSE and Zend/LICENSE dates be updated too?
|
Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1 |
|
#
03f8baa8 |
| 08-Dec-2003 |
Derick Rethans |
- Make it compile again
|
#
dc6a849a |
| 07-Dec-2003 |
Stanislav Malyshev |
Apply Andrey Hristov's patch adding get_declared_interfaces()
|
#
709060e1 |
| 01-Dec-2003 |
Andi Gutmans |
- Nuke property_exists(). We need to fix isset() and this is already - supported in reflection API. In any case, it's best not to add new - functions in the general namespace except for keepi
- Nuke property_exists(). We need to fix isset() and this is already - supported in reflection API. In any case, it's best not to add new - functions in the general namespace except for keeping engine consistency (which would have been true in this case)
show more ...
|
#
3be27ecc |
| 27-Nov-2003 |
Marcus Boerger |
Add a support function to check for property existance which is different from checking a property from being empty/set. Update test #26182.
|
#
d344648b |
| 24-Nov-2003 |
Andi Gutmans |
- Fix __autoload() to preserve class case. - Heads up, this patch might break stuff so please let me know if you - bump into any problems.
|