History log of /php-src/NEWS (Results 6076 – 6100 of 15458)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 7938ebf6 12-Aug-2016 Christoph M. Becker

Fix #60665: call to empty() on NULL result using PDO::FETCH_LAZY returns false

The has_property handler only checked whether a respective column name
exists, but neither whether the colu

Fix #60665: call to empty() on NULL result using PDO::FETCH_LAZY returns false

The has_property handler only checked whether a respective column name
exists, but neither whether the column value is set, nor whether it is
empty, respectively. We fix that to match the behavior of POD:FETCH_OBJ in
particular and PHP in general.

show more ...

# 0b58d5eb 12-Aug-2016 Xinchen Hui

Update NEWs

# e03480bf 12-Aug-2016 Xinchen Hui

Fixed bug #72813 (Segfault with __get returned by ref)

This should be safe change, as we don't dereference value and member
after calling setter/getter.

And compare to adding un

Fixed bug #72813 (Segfault with __get returned by ref)

This should be safe change, as we don't dereference value and member
after calling setter/getter.

And compare to adding unref codes, this is much cheaper.

show more ...

# 3467526a 12-Aug-2016 Yasuo Ohgaki

Merge RFC: Session ID without hashing
https://wiki.php.net/rfc/session-id-without-hashing

# 1dab96c1 08-Aug-2016 Andrea Faulds

Show "or null" in TypeErrors for nullable arg_infos

# 622d2f41 09-Aug-2016 Aaron Piotrowski

ReflectionType improvements

Added ReflectionNamedType and updated ReflectionType::__toString()

# 283b0cc8 11-Aug-2016 Ville Hukkamäki

Fix #72810. Add check for SKIP_ONLINE_TESTS

# 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 ...

# 24fdffda 10-Aug-2016 Christoph M. Becker

Update to SQLite 3.14.0

# 3fcd8ac2 10-Aug-2016 Yasuo Ohgaki

Fixed typo

# ee797e7e 10-Aug-2016 Yasuo Ohgaki

Update NEWS and UPGRADING

# 087dcd93 10-Aug-2016 Yasuo Ohgaki

pull-request/1100
Request #65081 mb_chr() and mb_ord()

Added test cases and little optimization.


# f41b69e8 09-Aug-2016 Keyur

Add NEWS

# 40059bee 09-Aug-2016 Keyur

Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
Add NEWS
Fix ASSERT logic
Bugfix 72791: fix memory leak in PDO persistent connections


# bb955ec9 09-Aug-2016 Keyur

Add NEWS

# ecc4025c 09-Aug-2016 Xinchen Hui

Update NEWS

# e52cb185 09-Aug-2016 Xinchen Hui

Fixed bug #72788 (Invalid memory access when using persistent PDO connection)

# 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 ...

# e52c1f3c 07-Aug-2016 Nikita Popov

Merge branch 'PHP-7.0' into PHP-7.1


# e616bc86 03-Aug-2016 Lauri Kenttä

Fix bug #55451

Make substr_compare ignore the length if it's NULL. This allows to
use the last parameter (case_insensitivity) with the default length.

# af56fed7 07-Aug-2016 Kalle Sommer Nielsen

Fixed bug #71534 (Type confusion in exif_read_data() leading to heap overflow in debug mode)

Unlike the original patch, this does not return an unknown format in case an unsigned compatible

Fixed bug #71534 (Type confusion in exif_read_data() leading to heap overflow in debug mode)

Unlike the original patch, this does not return an unknown format in case an unsigned compatible type cannot be found (cases for SINGLE and DOUBLE removed), as these seems rare cases according to the inline comments.

Note, the test does not test if PHP is in debug mode, although the report originally states it only occurs there only.

The fix is based on a patch by hlt99 at blinkenshell dot org

show more ...

# fadbb30e 07-Aug-2016 Christopher Jones

News for 7.1

# b601dc5b 04-Aug-2016 Christopher Jones

Fix bug #72524 (Binding null values triggers ORA-24816 error)

# b944a7a5 06-Aug-2016 Kalle Sommer Nielsen

NEWS + UPGRADING for recent EXIF additions

# 5e2b8349 06-Aug-2016 Kalle Sommer Nielsen

Check the return value of dbconvert() in mssql_guid_string(), as it may return -1 in case the conversion failed. In that case false is returned.

Also initialize buffer and buffer2 to NULL, w

Check the return value of dbconvert() in mssql_guid_string(), as it may return -1 in case the conversion failed. In that case false is returned.

Also initialize buffer and buffer2 to NULL, which should fix bug #72039 (Use of uninitialised value on mssql_guid_string).

This only applies to 5.6, as we do not have mssql in 7.0 anymore

show more ...

1...<<241242243244245246247248249250>>...619