Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL | SVN Migration | 2006-10-15 | 1 | -2158/+0 |
| | |||||
* | Fixed bug #38942 (Double old-style-ctor inheritance) | Dmitry Stogov | 2006-09-26 | 1 | -3/+15 |
| | |||||
* | Fixed bug #38047 ("file" and "line" sometimes not set in backtrace from ↵ | Dmitry Stogov | 2006-07-27 | 1 | -2/+32 |
| | | | | inside error handler) | ||||
* | - Better fix for #34505 and related, drop zend_unmangle_property_name_ex() | Marcus Boerger | 2006-07-24 | 1 | -3/+3 |
| | |||||
* | MFH | Antony Dovgal | 2006-07-20 | 1 | -1/+0 |
| | |||||
* | - Fixed Bug #37811 define not using toString on objects | Marcus Boerger | 2006-07-09 | 1 | -2/+22 |
| | |||||
* | MFH: no need to throw E_ERROR here | Antony Dovgal | 2006-06-27 | 1 | -1/+2 |
| | |||||
* | Keeping consistent arg_stack during arguments freeing (Exception from ↵ | Dmitry Stogov | 2006-05-31 | 1 | -3/+7 |
| | | | | destructor may use inconsistent arg_stack for backtrace). | ||||
* | - MFH as discussed | Marcus Boerger | 2006-05-09 | 1 | -40/+40 |
| | | | | | | | | | | | | | | | | | | | | | . zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type) | ||||
* | fix #36944 (strncmp & strncasecmp do not return false on negative string length) | Antony Dovgal | 2006-04-05 | 1 | -0/+12 |
| | |||||
* | fix #36897 (debug_print_backtrace() doesn't return void but array(0) {}) | Antony Dovgal | 2006-03-28 | 1 | -2/+0 |
| | |||||
* | Remove "called at [(null):0]" from debug backtrace | Dmitry Stogov | 2006-03-03 | 1 | -1/+5 |
| | |||||
* | MFH. | Andrei Zmievski | 2006-02-07 | 1 | -1/+6 |
| | |||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | Fixed bug #34729 (Crash in ZTS mode under Apache) | Dmitry Stogov | 2005-12-01 | 1 | -1/+1 |
| | |||||
* | MFH: Add an additional field $frame['object'] to the result array of ↵ | Sebastian Bergmann | 2005-11-24 | 1 | -2/+7 |
| | | | | debug_backtrace() that contains a reference to the respective object when the frame was called from an object. | ||||
* | fix #34505 (possible memory corruption when unmangling properties with empty ↵ | Antony Dovgal | 2005-09-16 | 1 | -3/+3 |
| | | | | | | | names) 1st part | ||||
* | Changed "instanceof" and "catch" operators, is_a() and is_subclass_of() ↵ | Dmitry Stogov | 2005-09-09 | 1 | -1/+1 |
| | | | | functions to not call __autoload(). | ||||
* | Support for class constants and static members for internal classes | Dmitry Stogov | 2005-09-01 | 1 | -0/+1 |
| | |||||
* | fix crash if throw attempted outside of executable code | Stanislav Malyshev | 2005-08-22 | 1 | -1/+1 |
| | |||||
* | MFH: fix memleak | Antony Dovgal | 2005-08-18 | 1 | -0/+1 |
| | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | fix various "Class entry requested for an object without PHP class" messages | Stanislav Malyshev | 2005-06-27 | 1 | -23/+13 |
| | | | | | | | when working with non-PHP objects. # Using Z_OBJCE(object)->name is usually bad idea unless you know it's # a pure PHP object | ||||
* | Fixed wrong include/requre occurrences in debug backtrace. | Dmitry Stogov | 2005-06-27 | 1 | -1/+6 |
| | |||||
* | Fixed bug #28377 (debug_backtrace is intermittently passing args) | Dmitry Stogov | 2005-06-23 | 1 | -0/+30 |
| | |||||
* | Fixed bug #30828 (debug_backtrace() reports incorrect class in overridden ↵ | Dmitry Stogov | 2005-06-23 | 1 | -10/+18 |
| | | | | methods) | ||||
* | Fixed bug #29896 (Backtrace argument list out of sync) | Dmitry Stogov | 2005-06-22 | 1 | -11/+39 |
| | |||||
* | Fixed memory leak in debug_print_backtrace() | Dmitry Stogov | 2005-06-07 | 1 | -3/+9 |
| | |||||
* | Fixed bug #32296 (get_class_methods output has changed between 5.0.2 and 5.0.3) | Dmitry Stogov | 2005-05-03 | 1 | -4/+5 |
| | | | | | Now get_class_methods() shows accessible private and protected methods if it is called from class scope. | ||||
* | - Extend API to support real existance test without the need to add any new | Marcus Boerger | 2005-05-02 | 1 | -1/+1 |
| | | | | | functions or change any behavior | ||||
* | Fixed bug #32429 (method_exists() always return TRUE if __call method exists) | Dmitry Stogov | 2005-04-26 | 1 | -1/+10 |
| | |||||
* | Fixed memory leak in debug_backtrace() | Dmitry Stogov | 2005-04-18 | 1 | -14/+6 |
| | |||||
* | - Fix special cases of property_exists() | Marcus Boerger | 2005-04-17 | 1 | -1/+3 |
| | |||||
* | Fix method_exists(), pce is fetched, but ce is used | Sara Golemon | 2005-04-16 | 1 | -0/+1 |
| | |||||
* | - Fix even though we already know that the function will be renamed | Marcus Boerger | 2005-04-15 | 1 | -1/+7 |
| | |||||
* | - Add property_exits() | Marcus Boerger | 2005-04-08 | 1 | -0/+59 |
| | |||||
* | MF50: fix backtraces - non-Zend classes have names too | Stanislav Malyshev | 2005-04-04 | 1 | -0/+10 |
| | |||||
* | ws | Stanislav Malyshev | 2005-03-14 | 1 | -2/+2 |
| | |||||
* | Fix get_extension_funcs() - extension names are now lowercased, so should | Stanislav Malyshev | 2005-03-13 | 1 | -1/+4 |
| | | | | | be function arguments. | ||||
* | - Fix #32226 | Marcus Boerger | 2005-03-07 | 1 | -1/+1 |
| | |||||
* | - Add support for methods dynamically added through object handlers | Marcus Boerger | 2005-02-28 | 1 | -1/+7 |
| | |||||
* | - Update method_exists to new handlers and allow first parameter as string | Marcus Boerger | 2005-02-27 | 1 | -8/+10 |
| | |||||
* | Fix debug_trace with eval (patch from Antony Dovgal) | Stanislav Malyshev | 2005-02-01 | 1 | -0/+1 |
| | |||||
* | MFB | Zeev Suraski | 2004-12-27 | 1 | -1/+1 |
| | |||||
* | - Patch from Andrey Hristov: | Andi Gutmans | 2004-10-26 | 1 | -3/+16 |
| | | | | | | | | | | | | | I have cooked a small patch which allows is_subclass_of() the accept not only an object as first parameter but a string as well. When string is passed the function checks whether the class specified is subclass of the second parameter class a{} class b{} extends a{} is_subclass_of("a", "a") //false is_subclass_of("b", "a") //true currently only objects are allowed as first parameter | ||||
* | - Allow to omit object/classname in get_parent_class() which makes it | Marcus Boerger | 2004-10-14 | 1 | -2/+10 |
| | | | | | compatible with the signature and behavior of get_class() | ||||
* | Bug #30381 Strange results with get_class_vars() | Marcus Boerger | 2004-10-12 | 1 | -53/+57 |
| | |||||
* | - Fix visibility in get_class_vars() and get_class_methods() | Marcus Boerger | 2004-10-12 | 1 | -7/+21 |
| | | | | | # Still there is a problem/error in the executor, i'll have a look | ||||
* | - Fix set_exception_handler | Marcus Boerger | 2004-10-12 | 1 | -6/+8 |
| | | | | | | | # unsettign with '' never worked so we use NULL now which is much better # because it matches the the return NULL in case no handler was defined # and can't lead to problems with wrong string operations. | ||||
* | - Bugfix #27798 | Marcus Boerger | 2004-10-04 | 1 | -5/+17 |
| |