#
2543e61a |
| 22-Jun-2018 |
Nikita Popov |
Fixed bug #76509 In PHP static properties are shared between inheriting classes, unless they are explicitly overwritten. However, because this functionality was implemented using ref
Fixed bug #76509 In PHP static properties are shared between inheriting classes, unless they are explicitly overwritten. However, because this functionality was implemented using reference, it was possible to break the implementation by reassigning the static property reference. This is fixed by switching the implementation from using references to using INDIRECTs, which cannot be affected by userland code.
show more ...
|
#
07783592 |
| 25-Jun-2018 |
Christoph M. Becker |
Merge branch 'PHP-7.2' * PHP-7.2: Fix arginfo wrt. optional/required parameters
|
#
2458dab4 |
| 25-Jun-2018 |
Christoph M. Becker |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Fix arginfo wrt. optional/required parameters
|
#
6b5597f7 |
| 22-Jun-2018 |
Christoph M. Becker |
Fix arginfo wrt. optional/required parameters All parameters of phpdbg_color(), phpdbg_exec() and phpdbg_prompt() are required. We mark them as such. |
#
4abf423d |
| 24-Jun-2018 |
Nikita Popov |
Merge branch 'PHP-7.2'
|
#
14b22704 |
| 24-Jun-2018 |
Nikita Popov |
Merge branch 'PHP-7.1' into PHP-7.2
|
#
701460ba |
| 24-Jun-2018 |
Nikita Popov |
Fixed bug #76502 |
#
8c923186 |
| 22-Jun-2018 |
Anatol Belski |
[ci skip] Update NEWS |
#
b592cd7b |
| 22-Jun-2018 |
Nikita Popov |
Merge branch 'PHP-7.2'
|
#
ed9d1b70 |
| 22-Jun-2018 |
Nikita Popov |
Fixed bug #76520 |
#
71d16fee |
| 21-Jun-2018 |
Christoph M. Becker |
Fix #76512: \w no longer includes unicode characters The migration from PCRE to PCRE2 missed to rename once occurrence of `PCRE_UCP` to `PCRE2_UCP`. We fix that. We also revert the cha
Fix #76512: \w no longer includes unicode characters The migration from PCRE to PCRE2 missed to rename once occurrence of `PCRE_UCP` to `PCRE2_UCP`. We fix that. We also revert the changes to bug52971.phpt which had been incorrectly made in commit a5bc5ae[1]. [1] <http://git.php.net/?p=php-src.git;a=commit;h=a5bc5aed71f7a15f14f33bb31b8e17bf5f327e2d>
show more ...
|
#
4bd6be8a |
| 21-Jun-2018 |
Xinchen Hui |
Update NEWS |
#
e62c6e7d |
| 21-Jun-2018 |
Xinchen Hui |
Update NEWS |
#
6531719d |
| 21-Jun-2018 |
Xinchen Hui |
Fixed bug #76505 (array_merge_recursive() is duplicating sub-array keys) |
#
8e2f0824 |
| 20-Jun-2018 |
Nikita Popov |
Merge branch 'PHP-7.2'
|
#
44f4d2be |
| 20-Jun-2018 |
Nikita Popov |
Merge branch 'PHP-7.1' into PHP-7.2
|
#
69dee5c7 |
| 12-Jun-2018 |
Nikita Popov |
Fixed bug #73342 Directly listen on socket, instead of duping it to STDIN and listening on that. |
#
963998f0 |
| 19-Jun-2018 |
Christoph M. Becker |
Update NEWS for 7.3.0alpha3 |
#
ecc1a7c5 |
| 15-Jun-2018 |
Robert Lu |
Fix bug #44217: Output after stdout/stderr closed cause immediate exit with status 0 We exit with status 255 instead. |
#
84d7d4e1 |
| 18-Jun-2018 |
Dmitry Stogov |
Fixed bug #76466 (Loop variable confusion) |
#
4d69bbee |
| 18-Jun-2018 |
Xinchen Hui |
Fixed bug #76437 (token_get_all with TOKEN_PARSE flag fails to recognise close tag) |
#
d04917c7 |
| 24-Sep-2017 |
Nikita Popov |
Fixed bug #75218 I've introduced a new CompileError type, from which ParseError inherits. These errors are not parse errors in the narrow sense of the term, even though they happen t
Fixed bug #75218 I've introduced a new CompileError type, from which ParseError inherits. These errors are not parse errors in the narrow sense of the term, even though they happen to be generated during parsing in our implementation. Additionally reusing the ParseError class for this purpose would change existing error messages (if the exception is not caught) from a "Fatal error:" to a "Parse error:" prefix, and also the error kind from E_COMPILE_ERROR to E_PARSE.
show more ...
|
#
19af5e47 |
| 14-Jun-2018 |
David Carlier |
Add NEWS entries [ci skip] |
#
3775bf93 |
| 14-Jun-2018 |
Tom Van Looy |
[ci skip] Mention new hrtime() in NEWS |
#
51f63211 |
| 15-Jun-2018 |
Xinchen Hui |
Update NEWS |