| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fixed bug #29086 & #28064 (PHP crashes on extremly long scripts). | Ilia Alshanetsky | 2004-07-12 | 1 | -2/+2 | |
| | | ||||||
| * | Ease off on severity of new error (Using Resources as array offsets) | Sara Golemon | 2004-06-24 | 1 | -1/+1 | |
| | | ||||||
| * | BugFix #28879 Inconsistent behavior between explicit and implicit array ↵ | Sara Golemon | 2004-06-23 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | creation. Changes: Throw E_WARNING "Illegal offset type" when explicitly creating array elements with objects, arrays, or resorces as indexes. This matches implicit creation w/ obj/arr indices. Throw E_WARNING "Resource ID#%ld used as offset, casting to integer (%ld)" when implicitly creating array with resource as index. (BC) | |||||
| * | Another typo in converting array index doubles to long. | Sara Golemon | 2004-06-18 | 1 | -1/+1 | |
| | | ||||||
| * | fix incdec - make value's refcount non-zero when passing to | Stanislav Malyshev | 2004-06-02 | 1 | -4/+2 | |
| | | | | | | write_property - otherwise __set caller cleanup could kill it. | |||||
| * | Prevent possible problems with illegal properties | Marcus Boerger | 2004-05-28 | 1 | -1/+1 | |
| | | ||||||
| * | - Fix problem with exceptions returning from include(). (Dmitry) | Andi Gutmans | 2004-05-27 | 1 | -0/+3 | |
| | | ||||||
| * | Bugfix#28404 When type is double we need to access dval, not lval | Sara Golemon | 2004-05-18 | 1 | -1/+1 | |
| | | ||||||
| * | Fix bug #27876 | Stanislav Malyshev | 2004-04-29 | 1 | -1/+1 | |
| | | ||||||
| * | Handle failure in get_current_data | Marcus Boerger | 2004-04-15 | 1 | -0/+5 | |
| | | ||||||
| * | Fixed reversed condition for error reporting. | Ilia Alshanetsky | 2004-04-01 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed BUG in zend_post_incdec_property | Dmitry Stogov | 2004-03-31 | 1 | -2/+2 | |
| | | ||||||
| * | -clonning+cloning | Sebastian Bergmann | 2004-03-29 | 1 | -4/+4 | |
| | | ||||||
| * | Implicit clonning strict warning was added for ze1_compatibility_mode | Dmitry Stogov | 2004-03-29 | 1 | -0/+4 | |
| | | ||||||
| * | Fixed bug #27731 (error_reporting() inside @ block fails to set | Ilia Alshanetsky | 2004-03-29 | 1 | -5/+7 | |
| | | | | | | error_reporting level). | |||||
| * | - call set handler if assigning to object having this handler | Stanislav Malyshev | 2004-03-28 | 1 | -8/+15 | |
| | | | | | | - cleanup: use macros to access object internal vars | |||||
| * | - Fix build (thanks to Timm) | Andi Gutmans | 2004-03-26 | 1 | -4/+4 | |
| | | ||||||
| * | no need to use result for RECV's - as in PHP4 | Stanislav Malyshev | 2004-03-25 | 1 | -5/+5 | |
| | | ||||||
| * | Use get/set handlers for increment.decrement ops on objects | Stanislav Malyshev | 2004-03-25 | 1 | -12/+34 | |
| | | ||||||
| * | Object cloning in ze1 compatibility mode (zend.ze1_compatibility_mode) was ↵ | Dmitry Stogov | 2004-03-24 | 1 | -20/+61 | |
| | | | | | reimplemented (Dmitry, Andi) | |||||
| * | - Remove whitespace | Andi Gutmans | 2004-03-22 | 1 | -1/+1 | |
| | | ||||||
| * | - Improve consistency | Andi Gutmans | 2004-03-21 | 1 | -8/+7 | |
| | | ||||||
| * | API change for read_property: | Stanislav Malyshev | 2004-03-21 | 1 | -6/+6 | |
| | | | | | | | instead of bool silent it now gets fetch type This can be used for creating proxy objects for write contexts | |||||
| * | - Nuke unused code | Andi Gutmans | 2004-03-21 | 1 | -30/+0 | |
| | | ||||||
| * | Fix possible data corruption with __set() | Zeev Suraski | 2004-03-18 | 1 | -1/+1 | |
| | | ||||||
| * | Improve error message - on E_STRICT, method is actually called, | Stanislav Malyshev | 2004-03-18 | 1 | -1/+4 | |
| | | | | | | so the error shouldn't say it cannot be called. | |||||
| * | - Fix tiny bug (one of the reasons we can't support __toString() for | Andi Gutmans | 2004-03-17 | 1 | -1/+1 | |
| | | | | | | - regular objects). | |||||
| * | - Fixed problem with __toString(). Due to the engine's architecture it is | Andi Gutmans | 2004-03-17 | 1 | -8/+18 | |
| | | | | | | | - currently not possible to call __toString() anywhere besides print & eval. - Follow up will be on internals@ | |||||
| * | - Error out if get_method() isn't defined. | Andi Gutmans | 2004-03-16 | 1 | -0/+4 | |
| | | | | | | | - Use calling scope of internal function callee when calling a method using static syntax (array("A", "func")); | |||||
| * | Improve error message | Marcus Boerger | 2004-03-16 | 1 | -1/+3 | |
| | | ||||||
| * | Clearify the different method/class flags (as discussed with Andi). | Marcus Boerger | 2004-03-09 | 1 | -1/+1 | |
| | | ||||||
| * | - Nuke unused code. | Andi Gutmans | 2004-03-09 | 1 | -1/+2 | |
| | | ||||||
| * | Rename hasMore() to valid() as discussed. (Part II) | Marcus Boerger | 2004-03-08 | 1 | -1/+1 | |
| | | ||||||
| * | - Fix leak (Dmitry) | Andi Gutmans | 2004-03-02 | 1 | -0/+2 | |
| | | ||||||
| * | - Initialize memory to \0 so that we can reliable detect whether a specific | Derick Rethans | 2004-02-29 | 1 | -0/+1 | |
| | | | | | | | opcode element is in use. #- Stas thinks it's OK ;-) | |||||
| * | export opcode table | Stanislav Malyshev | 2004-02-29 | 1 | -1/+1 | |
| | | ||||||
| * | Fixes for abstract classes/methods | Marcus Boerger | 2004-02-27 | 1 | -1/+1 | |
| | | ||||||
| * | Fix leak in foreach ($o->mthd()->arr) | Zeev Suraski | 2004-02-25 | 1 | -0/+1 | |
| | | ||||||
| * | - Improve ARG_INFO() macros to support supplying required_num_args | Zeev Suraski | 2004-02-25 | 1 | -0/+3 | |
| | | | | | | - Initial fix for foreach($o->mthd()->arr) crash (now leaks) | |||||
| * | - Rename compatiblity mode to zend.ze2_compatibility_mode (it doesn't only ↵ | Zeev Suraski | 2004-02-25 | 1 | -3/+3 | |
| | | | | | | | | | | | | affect auto-clone). - Perform implementation checks even with simple inheritance (off when compatibility mode is enabled). - Restore default arguments in interfaces and handle it correctly. - Move registration of internal classes later in the startup sequence in order to have INI options available. | |||||
| * | - Remove old code | Andi Gutmans | 2004-02-12 | 1 | -18/+5 | |
| | | ||||||
| * | Centralize exceptions code in zend_exceptions.[ch]. | Zeev Suraski | 2004-02-12 | 1 | -0/+1 | |
| | | | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon | |||||
| * | - Use zend_throw_exception_object() in throw_handler to make sure it | Andi Gutmans | 2004-02-12 | 1 | -1/+1 | |
| | | | | | | - does all the checks | |||||
| * | Fix leaks in assignments to overloaded objects | Zeev Suraski | 2004-02-11 | 1 | -0/+11 | |
| | | ||||||
| * | Fix leak with overloaded objects, when they're used just "for the hell | Zeev Suraski | 2004-02-11 | 1 | -2/+9 | |
| | | | | | | of it" :) | |||||
| * | Fixed a bug the caused overloaded array indices to be converted to strings | Zeev Suraski | 2004-02-11 | 1 | -24/+23 | |
| | | ||||||
| * | Turn off bogus warnings with overloaded dimensions and += (and friends) | Zeev Suraski | 2004-02-11 | 1 | -2/+8 | |
| | | ||||||
| * | Improve the implementation of unset() on array dimensions to be more | Zeev Suraski | 2004-02-11 | 1 | -14/+36 | |
| | | | | | | consistent with that of regular variables and string offsets | |||||
| * | Fix bug #26698 (exceptions handled properly during argument passing to ↵ | Zeev Suraski | 2004-02-10 | 1 | -0/+8 | |
| | | | | | functions) | |||||
| * | Fix refcounting of ++/+= overloading (fix leak in __get()/__set() | Zeev Suraski | 2004-02-10 | 1 | -8/+4 | |
| | | | | | | based classes) | |||||
