Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵ | Dmitry Stogov | 2005-07-07 | 1 | -1/+23 |
| | | | | complement the property get/set methods) | ||||
* | Restored old behavior of zend_statup_module() | Dmitry Stogov | 2005-06-30 | 1 | -5/+5 |
| | |||||
* | add comment | Stanislav Malyshev | 2005-06-29 | 1 | -0/+1 |
| | |||||
* | fix various "Class entry requested for an object without PHP class" messages | Stanislav Malyshev | 2005-06-27 | 1 | -3/+33 |
| | | | | | | | when working with non-PHP objects. # Using Z_OBJCE(object)->name is usually bad idea unless you know it's # a pure PHP object | ||||
* | improve error messages when error raised from an internal class (do not hide ↵ | Antony Dovgal | 2005-06-17 | 1 | -3/+9 |
| | | | | class name) | ||||
* | Improved PHP extension loading mechanism with support for module ↵ | Dmitry Stogov | 2005-06-17 | 1 | -16/+116 |
| | | | | dependencies and conflicts. | ||||
* | Fixed bug #30332 (zend.ze1_compatibility_mode isnt fully compatable with ↵ | Dmitry Stogov | 2005-04-29 | 1 | -1/+15 |
| | | | | array_push()) | ||||
* | Fixed bug #29210 (Function: is_callable - no support for private and ↵ | Dmitry Stogov | 2005-04-27 | 1 | -6/+19 |
| | | | | protected classes) | ||||
* | Fixed bug #30702 (cannot initialize class variable from class constant) | Dmitry Stogov | 2005-04-26 | 1 | -0/+5 |
| | |||||
* | - Add ReflectionProperty::getDocComment() | Marcus Boerger | 2005-04-19 | 1 | -0/+8 |
| | |||||
* | internal_function->fn_flags is not initialized at this point | Andrei Zmievski | 2005-03-21 | 1 | -1/+1 |
| | |||||
* | don't call rshutdown twice for dl()'d modules. | Wez Furlong | 2005-03-16 | 1 | -3/+0 |
| | | | | | Spotted by Andrei. | ||||
* | fix shutdown so that dl()'d modules are unloaded after all the dtors have | Wez Furlong | 2005-03-15 | 1 | -12/+11 |
| | | | | | been called. | ||||
* | - A little optimization to prevent problems when trying to reimplement an | Marcus Boerger | 2005-02-17 | 1 | -2/+3 |
| | | | | | interface inherited from an interfaces that was just implemented...... | ||||
* | - No C++ ruleZ here | Marcus Boerger | 2005-02-17 | 1 | -1/+1 |
| | |||||
* | - Actually we must do this in two steps: 1st resize the table and set all | Marcus Boerger | 2005-02-17 | 1 | -2/+5 |
| | | | | | interfaces, 2nd implement the interfaces | ||||
* | - Incrementation is done elsewhere | Marcus Boerger | 2005-02-17 | 1 | -1/+1 |
| | |||||
* | - Fix windows build (funny MS compiler) | Marcus Boerger | 2005-02-17 | 1 | -1/+1 |
| | |||||
* | added some missing zend_[declare|update]_property_...() convenience | Hartmut Holzgraefe | 2005-02-04 | 1 | -0/+76 |
| | | | | | functions for bool, double and binary safe string data | ||||
* | - Fix #31651 (ReflectionClass::getDefaultProperties segfaults with arrays.) | Marcus Boerger | 2005-01-22 | 1 | -5/+11 |
| | |||||
* | - Unload on MAC OS X (shouldn't be a reason not to) | Andi Gutmans | 2005-01-15 | 1 | -1/+1 |
| | |||||
* | Fix OSX DL_UNLOAD macro and actually use it to make shared extensions | Rasmus Lerdorf | 2005-01-10 | 1 | -1/+1 |
| | | | | | work on OSX. | ||||
* | Patch by Joe Orton <jorton@redhat.com>. | Sebastian Bergmann | 2004-11-02 | 1 | -1/+1 |
| | |||||
* | - MFB (synch correctly not only for one problem) | Marcus Boerger | 2004-09-29 | 1 | -6/+7 |
| | |||||
* | - Refix the fix | Marcus Boerger | 2004-09-29 | 1 | -1/+1 |
| | | | | | | | # This somehow got lost and was then readded by Andi in 1.258 at the wrong # position. Obviously we need to separate the argument first and convert it # afterwards as done in 5.0.*. | ||||
* | Simplify/Optmize magic method calls (__get/__set/__call/__clone/__destruct) | Marcus Boerger | 2004-09-28 | 1 | -0/+22 |
| | |||||
* | selectively avoiding module cleanup code for apache 1 build and removing a ↵ | Anantha Kesari H Y | 2004-09-24 | 1 | -7/+1 |
| | | | | duplicate code | ||||
* | Aligned the ifdef NETWARE blocks to first column. | Anantha Kesari H Y | 2004-09-22 | 1 | -11/+11 |
| | |||||
* | When Apache is unloaded, it calls dlclose on all the PHP extensions | Anantha Kesari H Y | 2004-09-22 | 1 | -0/+8 |
| | | | | | that are loaded in memory. In the case of Apache 1.3, this call is blocking indefinitely. As a work around, this call is bypassed for Apache 1.3 build on NetWare only. This means that none of the loaded PHP extensions are unloaded. They will have to be manually unloaded before re-loading the Apache 1.3 again. | ||||
* | - Recommit: | Andi Gutmans | 2004-09-09 | 1 | -9/+74 |
| | | | | | | - Check signature of magic methods - Register __get/__set/__call for internal classes | ||||
* | - Roll back VM commit | Andi Gutmans | 2004-09-09 | 1 | -80/+14 |
| | |||||
* | - Check signature of magic methods | Marcus Boerger | 2004-09-09 | 1 | -9/+74 |
| | | | | | - Register __get/__set/__call for internal classes | ||||
* | - Fix the fix. | Andi Gutmans | 2004-09-09 | 1 | -5/+6 |
| | |||||
* | - Don't destroy object when calling overloaded cast method in | Andi Gutmans | 2004-09-04 | 1 | -0/+1 |
| | | | | | - zend_parse_parameters() | ||||
* | - Add missing brackets | Marcus Boerger | 2004-08-24 | 1 | -3/+3 |
| | |||||
* | Fix #28641: Instance of Interface | Marcus Boerger | 2004-06-05 | 1 | -0/+5 |
| | |||||
* | - Need to operate on module pointer in hash table | Marcus Boerger | 2004-05-18 | 1 | -1/+3 |
| | |||||
* | Z_TYPE_P is for zvals | Stanislav Malyshev | 2004-05-18 | 1 | -1/+1 |
| | |||||
* | Register according to the type specified by the module. | Wez Furlong | 2004-05-18 | 1 | -1/+1 |
| | | | | | (Helps to fix dl() bug) | ||||
* | - Centralize register and hash operations for startup/register_module | Marcus Boerger | 2004-05-12 | 1 | -29/+45 |
| | | | | | in new zend_register_module_ex(). | ||||
* | - Revert to 1.249 | Marcus Boerger | 2004-05-12 | 1 | -24/+5 |
| | |||||
* | Don't load modules twice | Marcus Boerger | 2004-05-01 | 1 | -5/+24 |
| | |||||
* | - Fix Reflection class names | Marcus Boerger | 2004-03-30 | 1 | -0/+4 |
| | | | | | | - Add ability to get the extension an internal class was defined in # This is the patch Andi and me used to search for underscrores... | ||||
* | Use lowercasing here | Marcus Boerger | 2004-03-28 | 1 | -1/+7 |
| | |||||
* | Force destructors to have empty signatures | Marcus Boerger | 2004-03-26 | 1 | -0/+4 |
| | |||||
* | Clearify the different method/class flags (as discussed with Andi). | Marcus Boerger | 2004-03-09 | 1 | -3/+4 |
| | |||||
* | Fix zend_parse_method_parameters_ex() and make it consistant with | Marcus Boerger | 2004-03-02 | 1 | -32/+21 |
| | | | | | | zend_parse_method_parameters(). # Obviously its only place of use is in pdo just right now. | ||||
* | Add some comments | Marcus Boerger | 2004-02-27 | 1 | -0/+3 |
| | |||||
* | Fixes for abstract classes/methods | Marcus Boerger | 2004-02-27 | 1 | -3/+6 |
| | |||||
* | - Improve ARG_INFO() macros to support supplying required_num_args | Zeev Suraski | 2004-02-25 | 1 | -1/+5 |
| | | | | | - Initial fix for foreach($o->mthd()->arr) crash (now leaks) |