History log of /php-src/NEWS (Results 8626 – 8650 of 15462)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# ffbb5668 02-Dec-2013 Michael Wallner

BFN

# 22fa3fbc 02-Dec-2013 Michael Wallner

Fix bug #65196

Passing DOMDocumentFragment to DOMDocument::saveHTML()
produces invalid markup, because a DocumentFragment is just a container
for child nodes and not a real node itse

Fix bug #65196

Passing DOMDocumentFragment to DOMDocument::saveHTML()
produces invalid markup, because a DocumentFragment is just a container
for child nodes and not a real node itself.

show more ...

# 7cd70264 02-Dec-2013 Michael Wallner

Fix Bug #64776 The XSLT extension is not thread safe.

# 6eae9274 02-Dec-2013 Michael Wallner

BFN

# 6408a1a5 02-Dec-2013 Michael Wallner

fix bug #49634x

# 02dca18b 01-Dec-2013 Nikita Popov

Fix bug #65764

I'm not exactly sure whether this is the right way to fix it. The
question is whether Generator::throw() on a newborn generator (i.e.
a generator that is not yet at yi

Fix bug #65764

I'm not exactly sure whether this is the right way to fix it. The
question is whether Generator::throw() on a newborn generator (i.e.
a generator that is not yet at yield expression) should first advance to
the first yield and throw the exception there or whether it should
instead throw the exception in the caller's context.

The old behavior was to throw it at the start of the function (i.e.
the very first opcode), which causes issues like the one in #65764.
Effectively it's impossible to properly handle the exceptions in this
case.

For now I choose the variant where the generator advances to the
first yield before throwing, as that's consistent with how all other
methods on the Generator object currently behave. This does not
necessarily match the behavior in other languages, e.g. Python would throw
the exception in the caller's context. But then our send() method already
has this kind of deviation, so it stays internally consistent at least.

show more ...

# af608869 30-Nov-2013 Felipe Pena

- BFN

# 9589cae8 30-Nov-2013 Nikita Popov

Fixed bug #66041: list() fails to unpack yielded ArrayAccess object

Yield return values now use IS_VAR rather than IS_TMP_VAR. This
fixes the issue with list() and should also be faster

Fixed bug #66041: list() fails to unpack yielded ArrayAccess object

Yield return values now use IS_VAR rather than IS_TMP_VAR. This
fixes the issue with list() and should also be faster as it avoids
doing a zval copy.

show more ...

# 5f099446 29-Oct-2013 nikita2206

Fixed bug #65768: DateTimeImmutable::diff does not work

This commit also prevents user classes from directly implementing
DateTimeInterface, because ext/date relies on classes implementi

Fixed bug #65768: DateTimeImmutable::diff does not work

This commit also prevents user classes from directly implementing
DateTimeInterface, because ext/date relies on classes implementing
it to support certain internal structures.

show more ...

# 967abd61 29-Nov-2013 Dmitry Stogov

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Added validation of class names in the autoload process


# 2d31eadb 29-Nov-2013 Dmitry Stogov

Added validation of class names in the autoload process

# 6d38090c 28-Nov-2013 Nikita Popov

Add gmp_root() and gmp_rootrem() functions

# d22cc5c8 28-Nov-2013 Derick Rethans

Fixed bug #65199 (Wrong Day of Week) and fixed bug #63391 (Incorrect/inconsistent day of week prior to the year 1600)

# 0652edfe 28-Nov-2013 Bob Weinand

Updated NEWS for Constant Scalar Exprs RFC

# 504c60dc 27-Nov-2013 Dmitry Stogov

Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src:
Fixed bug #66060 (Heap buffer over-read in DateInterval)


# 65803c8f 27-Nov-2013 Dmitry Stogov

Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5

* 'PHP-5.5' of git.php.net:php-src:
NEWS
Fixed bug #66060 (Heap buffer over-read in DateInterval)


# 92b76680 27-Nov-2013 Dmitry Stogov

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Fixed bug #65969 (Chain assignment with T_LIST failure)

Conflicts:
NEWS
Zend/zend_vm_def.h
Z

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
Fixed bug #65969 (Chain assignment with T_LIST failure)

Conflicts:
NEWS
Zend/zend_vm_def.h
Zend/zend_vm_execute.h

show more ...


# 16d59aa1 27-Nov-2013 Dmitry Stogov

Fixed bug #65969 (Chain assignment with T_LIST failure)

# 0dfdb1a4 27-Nov-2013 Remi Collet

NEWS

# 12fe4e90 27-Nov-2013 Remi Collet

Fixed bug #66060 (Heap buffer over-read in DateInterval)

# e9c6a1cf 27-Nov-2013 Julien Pauli

5.5.8-dev now

# 63f3ff7b 27-Nov-2013 Stanislav Malyshev

5.4.24-dev now

# ee3c7b70 26-Nov-2013 Dmitry Stogov

Added an optimization of class constants and constant calls to some internal functions

# 74ba88e1 26-Nov-2013 Andrey Hristov

Fix for Bug #66141 (mysqlnd quote function is wrong with NO_BACKSLASH_ESCAPES after failed query)

# 52630e3c 26-Nov-2013 Dmitry Stogov

Revert NEWS

1...<<341342343344345346347348349350>>...619