#
622d2f41 |
| 09-Aug-2016 |
Aaron Piotrowski |
ReflectionType improvements Added ReflectionNamedType and updated ReflectionType::__toString()
|
#
197051f3 |
| 11-Aug-2016 |
Kalle Sommer Nielsen |
Remove sql.safe_mode This is one of the last old and odd deprecated settings we still have in PHP, it was never fully implemented in all the database extensions and should probably have been
Remove sql.safe_mode This is one of the last old and odd deprecated settings we still have in PHP, it was never fully implemented in all the database extensions and should probably have been gone back in 5.4, along with safe_mode. Although if my memory strikes me right, mysql was also supporting it back then, but not mysqli. So far only interbase was supporting this feature, and the removal of it causes two effects for interbase: - CREATE DATABASE is now allowed no matter - The default database set by php.ini (ibase.default_db) is no longer forced http://php.net/ini.core#ini.sql.safe-mode
show more ...
|
#
a53a6b3f |
| 10-Aug-2016 |
Yasuo Ohgaki |
Fix URL rewriter issues
|
#
ee797e7e |
| 10-Aug-2016 |
Yasuo Ohgaki |
Update NEWS and UPGRADING
|
#
b50a4a48 |
| 09-Aug-2016 |
Christoph M. Becker |
Class constant visibility modifiers are now supported
|
#
f706897f |
| 07-Aug-2016 |
Christoph M. Becker |
Implement #38992: invoke() and invokeArgs() static method calls should match We don't want ReflectionMethod::invoke() to simply ignore its first argument, if the method to invoke is a st
Implement #38992: invoke() and invokeArgs() static method calls should match We don't want ReflectionMethod::invoke() to simply ignore its first argument, if the method to invoke is a static method. Instead we match its ZPP with that of ReflectionMethod::invokeArgs(). Furthermore, we apply the DRY principle by factoring out the code to a common helper function to prevent inadvertent future divergence of the implementations of both methods. As can be seen from the necessity to adapt some test cases, this causes a BC break for some pathological cases. Therefore we apply this patch to PHP 7.1 only, which is still in beta phase.
show more ...
|
#
7cce4496 |
| 07-Aug-2016 |
Kalle Sommer Nielsen |
Note about the recent change to the WSA version check on Windows
|
#
b944a7a5 |
| 06-Aug-2016 |
Kalle Sommer Nielsen |
NEWS + UPGRADING for recent EXIF additions
|
#
03d03243 |
| 30-Jul-2016 |
ju1ius |
Fix #72711: `mb_ereg` does not clear the `$regs` parameter on failure When `mb_ereg` failed to match, it didn't update the `$regs` argument. Now it will always set it to the empty array.
|
#
d9e4d511 |
| 05-Aug-2016 |
Kalle Sommer Nielsen |
NEWS and UPGRADING for recent fixes and additions to ext/exif
|
#
942d6c14 |
| 28-Jul-2016 |
Pierrick Charron |
Add new curl functions in UPGRADING
|
#
30a5ed3a |
| 28-Jul-2016 |
Pierrick Charron |
Fixed bug #71929 (CURLINFO_CERTINFO data parsing error).
|
#
98d8c70a |
| 21-Jul-2016 |
Páll Haraldsson |
Typo.. [skip ci]
|
#
ec97e78a |
| 19-Jul-2016 |
Anatol Belski |
update UPGRADING
|
#
7f3375d5 |
| 18-Jul-2016 |
Anatol Belski |
make constant name more descriptive
|
#
2170841e |
| 18-Jul-2016 |
Anatol Belski |
update NEWS and UPGRADING
|
#
a3a64369 |
| 17-Jul-2016 |
Jakub Zelenka |
Update NEWS and UPGRADING with info about dropping SSL2
|
#
8bb3bd04 |
| 14-Jul-2016 |
Christoph M. Becker |
Fix bug #72596: imagetypes function won't advertise WEBP support We add the constant IMG_WEBP and make sure that WebP support is properly reported by imagetypes().
|
#
afd3e39d |
| 13-Jul-2016 |
Dmitry Stogov |
Fixed bug #29368 (The destructor is called when an exception is thrown from the constructor).
|
#
c70f1fa6 |
| 11-Jul-2016 |
Julien Pauli |
Update for NEWS
|
#
6442aac7 |
| 11-Jul-2016 |
Anatol Belski |
move the internal only info into UPGRADING.INTERNALS
|
#
0c98f51c |
| 09-Jul-2016 |
Christoph M. Becker |
Implement RFC "Deprecate mb_ereg_replace eval option" <https://wiki.php.net/rfc/deprecate_mb_ereg_replace_eval_option> has been accepted, so we implement it.
|
#
cf8c217e |
| 11-Jul-2016 |
Anatol Belski |
add comment and fix typo
|
#
55ffabaa |
| 11-Jul-2016 |
Anatol Belski |
added UPGRADING and NEWS notes
|
#
98b9dfae |
| 10-Jul-2016 |
Stanislav Malyshev |
Fix for HTTP_PROXY issue. The following changes are made: - _SERVER/_ENV only has HTTP_PROXY if the local environment has it, and only one from the environment. - getenv('HTTP_
Fix for HTTP_PROXY issue. The following changes are made: - _SERVER/_ENV only has HTTP_PROXY if the local environment has it, and only one from the environment. - getenv('HTTP_PROXY') only returns one from the local environment - getenv has optional second parameter, telling it to only consider local environment
show more ...
|