Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | ChangeLog update | 2002-07-07 | 1 | -0/+10 | ||
| | ||||||
* | - Fix problem where scope was lost in nested function calls. | Andi Gutmans | 2002-07-06 | 1 | -10/+7 | |
| | | | | | - Thanks to Timm Friebe for diving into this one. | |||||
* | spelling fix | Zeev Suraski | 2002-07-06 | 1 | -11/+11 | |
| | ||||||
* | ChangeLog update | 2002-07-06 | 1 | -0/+4 | ||
| | ||||||
* | * folding fixes | Stig Bakken | 2002-07-05 | 1 | -1/+4 | |
| | ||||||
* | ChangeLog update | 2002-07-02 | 1 | -0/+7 | ||
| | ||||||
* | - Fix bug when acccessing $this not in class scope. | Andi Gutmans | 2002-07-01 | 1 | -8/+9 | |
| | ||||||
* | - Export zend_object_get_address() | Andi Gutmans | 2002-07-01 | 2 | -2/+2 | |
| | ||||||
* | ChangeLog update | 2002-07-01 | 1 | -0/+8 | ||
| | ||||||
* | - Remember to document autoload when I have time. | Andi Gutmans | 2002-06-30 | 1 | -0/+1 | |
| | ||||||
* | - MFZE1 | Derick Rethans | 2002-06-30 | 1 | -1/+1 | |
| | ||||||
* | ChangeLog update | 2002-06-30 | 1 | -0/+22 | ||
| | ||||||
* | - Get ready for alpha2 | Andi Gutmans | 2002-06-29 | 1 | -1/+1 | |
| | ||||||
* | - Invalid -> Undefined | Andi Gutmans | 2002-06-29 | 1 | -3/+3 | |
| | ||||||
* | - Add missing semi-colon. | Andi Gutmans | 2002-06-29 | 1 | -0/+1 | |
| | ||||||
* | - Improve some error messages. | Andi Gutmans | 2002-06-29 | 2 | -4/+4 | |
| | ||||||
* | - Revert previous fix. | Andi Gutmans | 2002-06-29 | 1 | -3/+1 | |
| | ||||||
* | - Change E_ERROR -> E_COMPILE_ERROR where needed. | Andi Gutmans | 2002-06-29 | 1 | -13/+8 | |
| | ||||||
* | - Fix for bug #17882. We complain if the same method is declared twice. | Andi Gutmans | 2002-06-29 | 1 | -1/+3 | |
| | ||||||
* | - Fix bug 15037 | Andi Gutmans | 2002-06-29 | 2 | -11/+19 | |
| | | | | | - Bump version to alpha2-dev | |||||
* | ChangeLog update | 2002-06-29 | 1 | -0/+4 | ||
| | ||||||
* | - WS fix | Andi Gutmans | 2002-06-28 | 1 | -2/+2 | |
| | ||||||
* | ChangeLog update | 2002-06-27 | 1 | -0/+21 | ||
| | ||||||
* | - Autoloading support based on patch from Ivan Ristic. | Andi Gutmans | 2002-06-26 | 1 | -2/+29 | |
| | | | | | | | | | | - Again I hope this feature ends up working well because if it doesn't we - might need to nuke it. This only works for global scoped classes and it - will never work for sub-classes so don't even ask!!!!! - Just define an __autoload() function in the global scope and it will be - called with the class name as the parameter if it doesn't manage to find - the class. | |||||
* | - Centralize global class fetch | Andi Gutmans | 2002-06-26 | 3 | -5/+6 | |
| | ||||||
* | - Fix problem with scope's not changing correctly during method calls. | Andi Gutmans | 2002-06-26 | 2 | -13/+29 | |
| | | | | | | - Reapply a tiny optimization to the allocator so that in non-debug mode - we clean memory without detecting leaks. | |||||
* | ChangeLog update | 2002-06-25 | 1 | -0/+40 | ||
| | ||||||
* | - MFZE1 (Turn off fast cache until we make sure it performs well.) | Andi Gutmans | 2002-06-24 | 1 | -1/+1 | |
| | ||||||
* | - More fixes (warnings, bug fixes etc.) | Andi Gutmans | 2002-06-24 | 1 | -15/+19 | |
| | ||||||
* | - Revert patch which checks at run-time if you're allowed to assign | Andi Gutmans | 2002-06-24 | 1 | -6/+0 | |
| | | | | | | | - certain values by reference. - We still need to find a solution for cases when this shouldn't be allowed - as it might cause leaks. | |||||
* | - Fix crash bug and clean up a bit. | Andi Gutmans | 2002-06-24 | 1 | -10/+6 | |
| | ||||||
* | IMHO, ZTS should no longer be labeled experimental. | Sebastian Bergmann | 2002-06-24 | 1 | -1/+1 | |
| | ||||||
* | - MFZE1 | Andi Gutmans | 2002-06-24 | 1 | -26/+0 | |
| | ||||||
* | - Don't use cache if we're using ZEND_MM | Andi Gutmans | 2002-06-24 | 1 | -0/+8 | |
| | ||||||
* | - Hardcode alignment to 8. We might need a configure check for this. | Andi Gutmans | 2002-06-24 | 1 | -0/+4 | |
| | ||||||
* | - Improve memory manager to allocate small blocks quickly. | Andi Gutmans | 2002-06-24 | 2 | -14/+52 | |
| | ||||||
* | - Don't keep allocated blocks in a linked list if we're in non-debug mode | Andi Gutmans | 2002-06-24 | 3 | -2/+17 | |
| | | | | | - as now the memory manager takes care to nuke all leaking blocks. | |||||
* | - MFZE1 | Andi Gutmans | 2002-06-24 | 2 | -5/+30 | |
| | ||||||
* | ChangeLog update | 2002-06-24 | 1 | -0/+12 | ||
| | ||||||
* | - Fix problem with constructor not being inherited and called correctly. | Andi Gutmans | 2002-06-23 | 2 | -4/+15 | |
| | ||||||
* | - Fix small bug | Andi Gutmans | 2002-06-23 | 1 | -0/+2 | |
| | ||||||
* | - Almost completely implement realloc(). It now resizes in place when | Andi Gutmans | 2002-06-23 | 1 | -29/+53 | |
| | | | | | - possible. | |||||
* | ChangeLog update | 2002-06-23 | 1 | -0/+18 | ||
| | ||||||
* | - Fix crash when zend_mm_shutdown is called more than once. | Andi Gutmans | 2002-06-22 | 2 | -2/+7 | |
| | ||||||
* | - MFZE1 | Andi Gutmans | 2002-06-22 | 4 | -24/+11 | |
| | ||||||
* | - Nuke persist_alloc(). | Andi Gutmans | 2002-06-22 | 7 | -71/+3 | |
| | ||||||
* | ChangeLog update | 2002-06-20 | 1 | -0/+16 | ||
| | ||||||
* | - This was also supposed to be part of the previous ZEND_MM commit :) | Andi Gutmans | 2002-06-19 | 1 | -1/+1 | |
| | ||||||
* | - Oops, this was supposed to be part of the previous #ifdef ZEND_MM change | Andi Gutmans | 2002-06-19 | 1 | -3/+3 | |
| | ||||||
* | - Use #ifdef for ZEND_MM | Andi Gutmans | 2002-06-19 | 1 | -1/+2 | |
| |