Revision tags: php-5.4.22, php-5.5.6 |
|
#
699f07ba |
| 02-Nov-2013 |
Anatol Belski |
limit virtual_cwd_activate() duplicated call to ZTS only
|
#
9df78bf9 |
| 01-Nov-2013 |
Anatol Belski |
reverted the previous commit, both calls are needed in TS mode
|
#
6aedfac7 |
| 31-Oct-2013 |
Anatol Belski |
virtual_cwd_activate() should be called only in one place
|
Revision tags: php-5.4.22RC1, php-5.5.6RC1 |
|
#
cf6ab0e9 |
| 17-Oct-2013 |
Anatol Belski |
applied and fixed the original patch initial work on the patch import done
|
Revision tags: php-5.4.21, php-5.5.5, php-5.4.21RC1, php-5.5.5RC1 |
|
#
f0c92656 |
| 29-Sep-2013 |
Nikita Popov |
Fix bug #65322: compile time errors won't trigger auto loading Also fixes duplicate bugs #54054 and #42098. Furthermore this fixes incorrect error messages thrown from code runn
Fix bug #65322: compile time errors won't trigger auto loading 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.
show more ...
|
Revision tags: php-5.5.4, php-5.4.20, php-5.5.4RC1, php-5.4.20RC1, php-5.5.3, php-5.4.19 |
|
#
14f57320 |
| 19-Aug-2013 |
Stanislav Malyshev |
Fix bug #65470 Segmentation fault in zend_error() with --enable-dtrace
|
Revision tags: php-5.5.2, php-5.4.18 |
|
#
f4dc2240 |
| 14-Aug-2013 |
Xinchen Hui |
Fixed #65431 (Discarded qualifiers from pointer target warnings when using --enable-dtrace) by Sixd
|
Revision tags: php-5.5.2RC1, php-5.4.18RC2, php-5.5.1, php-5.4.18RC1, php-5.3.27, php-5.4.17, php-5.5.0, php-5.3.27RC1, php-5.4.17RC1, php-5.5.0RC3, php-5.3.26, php-5.4.16, php-5.5.0RC2, php-5.3.26RC1, php-5.4.16RC1, php-5.5.0RC1, php-5.3.25, php-5.4.15, php-5.3.25RC1, php-5.5.0beta4, php-5.4.15RC1, php-5.4.14, php-5.3.24, php-5.5.0beta3, php-5.3.24RC1, php-5.4.14RC1, php-5.5.0beta2, php-5.5.0beta1, php-5.3.23, php-5.4.13, php-5.5.0alpha6, php-5.3.23RC1, php-5.4.13RC1, php-5.3.22, php-5.5.0alpha5, php-5.4.12, php-5.3.22RC2, php-5.4.12RC2, php-5.3.22RC1, php-5.4.12RC1, php-5.5.0alpha4, php-5.3.21, php-5.4.11 |
|
#
62059c16 |
| 14-Jan-2013 |
Xinchen Hui |
Fixed bug #63980 (object members get trimmed by zero bytes)
|
Revision tags: php-5.5.0alpha3, php-5.3.21RC1, php-5.4.11RC1 |
|
#
36e19c9c |
| 02-Jan-2013 |
Stanislav Malyshev |
Bug #43177: If an eval() has a parse error, the overall exit status and return code should not be affected. Without this fix, a webpage using eval() may return code 500. That might display
Bug #43177: If an eval() has a parse error, the overall exit status and return code should not be affected. Without this fix, a webpage using eval() may return code 500. That might display fine and the 500 go unnoticed, but using AJAX or wget, the 500 will cause problems.
show more ...
|
#
a666285b |
| 01-Jan-2013 |
Xinchen Hui |
Happy New Year
|
#
0a7395e0 |
| 01-Jan-2013 |
Xinchen Hui |
Happy New Year
|
#
831fbcf3 |
| 01-Jan-2013 |
Xinchen Hui |
Happy New Year
|
Revision tags: php-5.3.20, php-5.4.10, php-5.5.0alpha2, php-5.3.20RC1, php-5.4.10RC1 |
|
#
70f83f35 |
| 30-Nov-2012 |
Dmitry Stogov |
. The VM stacks for passing function arguments and syntaticaly nested calls were merged into a single stack. The stack size needed for op_array execution is calculated at compile time and preallocate
. The VM stacks for passing function arguments and syntaticaly nested calls were merged into a single stack. The stack size needed for op_array execution is calculated at compile time and preallocated at once. As result all the stack push operatins don't require checks for stack overflow any more. . Generators implementation was improved using the new VM stack. Now it's a bit more clear and faster.
show more ...
|
Revision tags: php-5.3.19, php-5.4.9, php-5.5.0alpha1, php-5.3.19RC1, php-5.4.9RC1, php-5.3.18, php-5.4.8, php-5.3.18RC1, php-5.4.8RC1, php-5.3.17, php-5.4.7 |
|
#
b29dc146 |
| 06-Sep-2012 |
Dmitry Stogov |
- Fixed bug #61767 (Shutdown functions not called in certain error situation) - Fixed bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function)
|
Revision tags: php-5.4.7RC1, php-5.3.16, php-5.4.6 |
|
#
75f6c8d4 |
| 12-Aug-2012 |
Xinchen Hui |
Revert "zend_make_printable_zval choses cast_object over __toString" This reverts commit a5dfd414941953c282bb68f6b08685252ca93a1a.
|
#
7b307fb9 |
| 12-Aug-2012 |
Xinchen Hui |
Fixed bug #62328 (implementing __toString and a cast to string fails) __toString should has a high priority
|
#
a5dfd414 |
| 10-Aug-2012 |
Leigh |
zend_make_printable_zval choses cast_object over __toString https://bugs.php.net/bug.php?id=62328 Added a check to see if the object implements a __toString magic method. This s
zend_make_printable_zval choses cast_object over __toString https://bugs.php.net/bug.php?id=62328 Added a check to see if the object implements a __toString magic method. This should be called instead of the cast_object method of built-in classes when defined.
show more ...
|
Revision tags: php-5.4.6RC1 |
|
#
b4b3a65f |
| 26-Jul-2012 |
Xinchen Hui |
Fixed bug #62661 (Interactive php-cli crashes if include() is used in auto_prepend_file)
|
Revision tags: php-5.4.5, php-5.3.15, php-5.3.15RC1, php-5.4.5RC1, php-5.3.14, php-5.4.4, php-5.3.14RC2, php-5.4.4RC2, php-5.3.14RC1, php-5.4.4RC1, php-5.3.13, php-5.4.3, php-5.4.2 |
|
#
72f19e9a |
| 03-May-2012 |
Xinchen Hui |
Fixed bug #61922 (ZTS build doesn't accept zend.script_encoding config)
|
Revision tags: php-5.3.12, php-5.3.11, php-5.4.1, php-5.3.11RC2, php-5.4.1RC2, php-5.3.11RC1, php-5.4.1RC1, PHP-5.4.1-RC1, php-5.4.0, php-5.4.0RC8, php-5.3.10, php-5.4.0RC7, php-5.4.0RC6, php-5.3.9, php-5.4.0RC5 |
|
#
e4ca0ed0 |
| 01-Jan-2012 |
Felipe Pena |
- Year++
|
#
8775a375 |
| 01-Jan-2012 |
Felipe Pena |
- Year++
|
#
4e198252 |
| 01-Jan-2012 |
Felipe Pena |
- Year++
|
Revision tags: php-5.3.9RC4, php-5.4.0RC4, php-5.3.9RC3, php-5.4.0RC3, php-5.3.9RC2, php-5.4.0RC2, php-5.4.0RC1, php-5.3.9RC1 |
|
#
d81ea16e |
| 21-Oct-2011 |
Stanislav Malyshev |
Changed silent conversion of array to string to produce a notice. (Patrick)
|
#
ed12ebc7 |
| 21-Oct-2011 |
Stanislav Malyshev |
Changed silent conversion of array to string to produce a notice. (Patrick)
|
Revision tags: php-5.4.0beta2, php-5.4.0beta1 |
|
#
750e4e10 |
| 14-Sep-2011 |
Dmitry Stogov |
Fixed bug #55578 (Segfault on implode/concat)
|