Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'PHP-5.4' into PHP-5.4.44 | Stanislav Malyshev | 2015-08-04 | 1 | -0/+10 |
|\ | | | | | | | | | | | * PHP-5.4: Fixed bug #69892 Adjust Git-Rules | ||||
| * | Fixed bug #69892 | Nikita Popov | 2015-08-01 | 1 | -0/+10 |
| | | |||||
* | | Fix bug #70121 (unserialize() could lead to unexpected methods execution / ↵ | Stanislav Malyshev | 2015-07-26 | 1 | -0/+9 |
|/ | | | | NULL pointer deref) | ||||
* | Fixed #67985 - Incorrect last used array index copied to new array after unset | Tjerk Meesters | 2014-09-09 | 1 | -0/+16 |
| | | | | In master zend_array_dup() is used to do this properly; this is a workaround. | ||||
* | Added tests for bug 67436 | Levi Morrison | 2014-06-15 | 5 | -0/+73 |
| | |||||
* | Fix bug 666222 | Levi Morrison | 2014-06-08 | 1 | -0/+37 |
| | | | | | | | | This also adds some smaller, isolated tests related to bug 66622. Conflicts: Zend/zend_vm_def.h Zend/zend_vm_execute.h | ||||
* | Fix bug #66286: Incorrect object comparison with inheritance | Nikita Popov | 2014-01-04 | 1 | -0/+26 |
| | | | | | | | std_compare_objects immidiately returned 0 if the property tables of both objects contain NULL at some index. Thus it would report objects as equal even though properties following after that differ. | ||||
* | Fixed Bug #66218 zend_register_functions breaks reflection | Remi Collet | 2013-12-10 | 1 | -0/+21 |
| | | | | | | | | | | | | | Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection. Ex: additional_functions from api_module_entry. Ex: in CLI, dl, cli_set_process_title and cli_get_process_title Note: - also affects functions overrided in extension (should be be reported in extension, where overrided, not in original extension) - also allow extension to call zend_register_functions for various list (instead of having a single bug list) | ||||
* | Fixed bug #65969 (Chain assignment with T_LIST failure) | Dmitry Stogov | 2013-11-27 | 1 | -0/+10 |
| | |||||
* | Fixed bug #65911 ($this not usable as static property) | bwoebi | 2013-10-16 | 1 | -0/+20 |
| | | | | | | In context of static accesses like classname::$this, the string "$this" should not be handled like a $this variable, but as an identifier for a static variable. | ||||
* | Fix bug #65322: compile time errors won't trigger auto loading | Nikita Popov | 2013-09-29 | 2 | -0/+40 |
| | | | | | | | | | Also fixes duplicate bugs #54054 and #42098. Furthermore this fixes incorrect error messages thrown from code running inside an error handler when a compilation is in progress. The error file and line are now correctly associated with the file/line of the executor, rather than the compiler. | ||||
* | Typo.... | Xinchen Hui | 2013-09-02 | 1 | -1/+1 |
| | |||||
* | Add a XFAIL test for #64896 | Xinchen Hui | 2013-09-02 | 1 | -0/+47 |
| | |||||
* | Fixed bug #60598 (cli/apache sapi segfault on objects manipulation) | Xinchen Hui | 2013-08-30 | 1 | -0/+30 |
| | |||||
* | Fix bug #65579 (Using traits with get_class_methods causes segfault). | Adam Harvey | 2013-08-28 | 1 | -0/+29 |
| | | | | | | | Specifically, this checks if there are trait aliases defined in the class scope before attempting to dereference the first trait alias. This handles the case where a trait alias was used in a child trait but no aliases exist in the concrete class. | ||||
* | non living code related typo fixes | Veres Lajos | 2013-08-04 | 1 | -1/+1 |
| | |||||
* | Make sure test.php isn't coming in from the include_path | Rasmus Lerdorf | 2013-08-02 | 1 | -10/+10 |
| | |||||
* | Fixed bug Bug #65372 (Segfault in gc_zval_possible_root when return ↵ | Xinchen Hui | 2013-08-02 | 1 | -0/+40 |
| | | | | reference fails) | ||||
* | Fixed bug #65291 - get_defined_constants() crash with __CLASS__ in trait | Arpad Ray | 2013-07-20 | 1 | -0/+1 |
| | | | | Also fix and test for get_defined_constants(true) | ||||
* | Fixed bug #65291 - get_defined_constants() crash with __CLASS__ in trait | Arpad Ray | 2013-07-19 | 1 | -0/+24 |
| | |||||
* | typo fixes | Veres Lajos | 2013-07-15 | 1 | -1/+1 |
| | |||||
* | Fixed bug #65254 (Exception not catchable when exception thrown in autoload ↵ | Xinchen Hui | 2013-07-14 | 1 | -0/+21 |
| | | | | with a namespace). | ||||
* | Fixed bug (is_callable() triggers Fatal Error) | Xinchen Hui | 2013-06-24 | 1 | -0/+27 |
| | | | | | This bug is also exists in 5.4, and previous fix by dsp is not complete for __callStatic stituation, see test script | ||||
* | Merge branch 'pull-request/341' | Stanislav Malyshev | 2013-06-10 | 5 | -5/+5 |
| | | | | | * pull-request/341: (23 commits) typofixes | ||||
* | Fixed bug #64988 (Class loading order affects E_STRICT warning) | Xinchen Hui | 2013-06-10 | 1 | -0/+30 |
| | |||||
* | Merge branch 'PHP-5.3' into PHP-5.4 | Dmitry Stogov | 2013-06-10 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.3: Fixed test script | ||||
| * | Fixed test script | Dmitry Stogov | 2013-06-10 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2013-06-09 | 1 | -0/+30 |
|\ \ | |/ | |||||
| * | Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC) | Xinchen Hui | 2013-06-09 | 1 | -0/+30 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2013-06-05 | 1 | -0/+40 |
|\ \ | |/ | |||||
| * | Fixed bug #64960 (Segfault in gc_zval_possible_root) | Xinchen Hui | 2013-06-05 | 1 | -0/+40 |
| | | |||||
* | | Fixed bug #64720 (SegFault on zend_deactivate) | Dmitry Stogov | 2013-05-21 | 1 | -0/+48 |
| | | |||||
* | | fix bug #64660 - yyparse can return 2, not only 1 | Stanislav Malyshev | 2013-05-20 | 1 | -0/+11 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Anatol Belski | 2013-05-12 | 3 | -0/+61 |
|\ \ | |/ | | | | | | | * PHP-5.3: Fixed bug #64821 Custom Exceptions crash when internal properties overridden | ||||
| * | Fixed bug #64821 Custom Exceptions crash when internal properties overridden | Anatol Belski | 2013-05-12 | 3 | -0/+61 |
| | | | | | | | | | | | | If user inherits Exception and overrides the properties to arbitrary data types, or simply doesn't run parent::__construct(), here we go. Just convert everything to the appropriate data type, like Exception::__toString() does. | ||||
* | | Update test script to make sure the error occurred | Xinchen Hui | 2013-04-04 | 1 | -1/+2 |
| | | |||||
* | | Use 5.4 specifical warnnig & Update NEWs | Xinchen Hui | 2013-04-04 | 1 | -9/+7 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2013-04-04 | 1 | -0/+15 |
|\ \ | |/ | |||||
| * | Fixed bug #64578 (debug_backtrace in set_error_handler corrupts zend heap: ↵ | Xinchen Hui | 2013-04-04 | 1 | -0/+15 |
| | | | | | | | | segfault) | ||||
* | | Fix #64572: Clean up after the test | ptarjan | 2013-04-03 | 1 | -0/+1 |
| | | | | | | | | Lets not leave stuff lying around. | ||||
* | | Update test script | Xinchen Hui | 2013-03-26 | 1 | -0/+2 |
| | | |||||
* | | Fixed bug #64515 (Memoryleak when using the same variablename 2times in ↵ | Xinchen Hui | 2013-03-26 | 1 | -0/+10 |
| | | | | | | | | function declaration) | ||||
* | | Fixed bug #64239 (Debug backtrace changed behavior since 5.4.10 or 5.4.11) | Xinchen Hui | 2013-03-21 | 4 | -10/+138 |
| | | |||||
* | | Fixed bug #63976 (Parent class incorrectly using child constant in class ↵ | Dmitry Stogov | 2013-03-19 | 1 | -0/+20 |
| | | | | | | | | property) | ||||
* | | Partial fix for bug #64239 | Dmitry Stogov | 2013-03-19 | 1 | -0/+22 |
| | | |||||
* | | Merge branch 'PHP-5.3' into PHP-5.4 | Dmitry Stogov | 2013-03-19 | 1 | -0/+13 |
|\ \ | |/ | | | | | | | * PHP-5.3: Fixed bug #62343 (Show class_alias In get_declared_classes()) | ||||
| * | Fixed bug #62343 (Show class_alias In get_declared_classes()) | Dmitry Stogov | 2013-03-19 | 1 | -0/+13 |
| | | |||||
* | | Fixed bug #64417 (ArrayAccess::&offsetGet() in a trait causes fatal error) | Dmitry Stogov | 2013-03-19 | 1 | -0/+39 |
| | | |||||
* | | Fixed confused exception message while user threw exception | Xinchen Hui | 2013-03-09 | 1 | -0/+24 |
| | | |||||
* | | Fixed bug #64235 (Insteadof not work for class method in 5.4.11) | Xinchen Hui | 2013-02-21 | 5 | -3/+72 |
| | | | | | | | | | | | | As we discussed with stefan, we think previous of allowing use with classes is a bug, should be forbided, anyway, the error message should be improved. |