#
5cf21553 |
| 12-Sep-2017 |
Anatol Belski |
Move dev to 7.0.25 |
#
f5d478c8 |
| 12-Sep-2017 |
Anatol Belski |
[ci skip] Fix news entry format |
#
b5c9cd4d |
| 12-Sep-2017 |
Anatol Belski |
[ci skip] Fix news entry format |
#
194547f5 |
| 12-Sep-2017 |
Anatol Belski |
[ci skip] Fix news entry format |
#
cb62dbe9 |
| 12-Sep-2017 |
Joe Watkins |
Merge branch 'PHP-7.2' * PHP-7.2: fix bug #75173 incorrect behavior of AppendIterator::append in foreach loop
|
#
f87e5135 |
| 12-Sep-2017 |
Joe Watkins |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: fix bug #75173 incorrect behavior of AppendIterator::append in foreach loop
|
#
7015d221 |
| 12-Sep-2017 |
Joe Watkins |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: fix bug #75173 incorrect behavior of AppendIterator::append in foreach loop
|
#
3e11b7fc |
| 10-Sep-2017 |
jhdxr |
fix bug #75173 incorrect behavior of AppendIterator::append in foreach loop |
#
77f3cef3 |
| 11-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Fixed bug #46781 (BC math handles minus zero incorrectly)
|
#
87a91aef |
| 11-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Fixed bug #46781 (BC math handles minus zero incorrectly)
|
#
9aa6898b |
| 11-Sep-2017 |
Christoph M. Becker |
Fixed bug #46781 (BC math handles minus zero incorrectly) Actually, there is no negative zero at all. We obey Postel's law, and still accept negative zeroes, but we store them as positi
Fixed bug #46781 (BC math handles minus zero incorrectly) Actually, there is no negative zero at all. We obey Postel's law, and still accept negative zeroes, but we store them as positive zeroes after the conversion from string, i.e. we normalize before further processing.
show more ...
|
#
613bac9e |
| 11-Sep-2017 |
Christoph M. Becker |
[ci-skip] Add NEWS entry for bug #75185 |
#
c40c0b81 |
| 11-Sep-2017 |
Xinchen Hui |
Not sure why these lines are removed :< |
#
8cb06273 |
| 11-Sep-2017 |
Xinchen Hui |
Update NEWS |
#
6b2813c3 |
| 11-Sep-2017 |
Xinchen Hui |
Fixed bug #75152 (signed integer overflow in parse_iv) |
#
674fe0af |
| 10-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Fixed bug #73730 (textdomain(null) throws in strict mode)
|
#
b394343a |
| 10-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Fixed bug #73730 (textdomain(null) throws in strict mode)
|
#
4b746fce |
| 10-Sep-2017 |
Christoph M. Becker |
Fixed bug #73730 (textdomain(null) throws in strict mode) The $text_domain parameter may be NULL, which we have to cater to explicitly with regard to strict_types. |
#
21eab49a |
| 09-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)
|
#
afa39038 |
| 09-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)
|
#
44eec946 |
| 09-Sep-2017 |
Christoph M. Becker |
Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus) Since `bcpowmod()` does not support non-integral operands, we have to truncate these in addition to emitting a re
Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus) Since `bcpowmod()` does not support non-integral operands, we have to truncate these in addition to emitting a respective warning. We also have to work with the truncated values in the following. We recognize that the division by one to enforce the truncation is actually overkill, but we stick with it for now, and shall tackle the issue for PHP 7.3.
show more ...
|
#
fd073020 |
| 07-Sep-2017 |
Nikita Popov |
Fixed bug #75170 This change may result in different mt_rand/rand sequences being generated on 64-bit systems for a specific seed. See also https://externals.io/message/100229. |
#
d01453b1 |
| 06-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1)
|
#
0f88a49f |
| 06-Sep-2017 |
Christoph M. Becker |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1)
|
#
b2919853 |
| 06-Sep-2017 |
Christoph M. Becker |
Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1) `x mod 1` is always zero; we have to take the scale into account, though. |