History log of /php-src/NEWS (Results 10326 – 10350 of 15466)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 1dbfe6e3 29-Mar-2011 Felipe Pena

- BFN

# f335f27b 28-Mar-2011 Pierre Joye

- not applied yet

# 4551bd57 28-Mar-2011 Pierre Joye

- Fixed bug #48465 (sys_get_temp_dir() possibly inconsistent, windows fix

# b83e243c 27-Mar-2011 Arnaud Le Blanc

Added CallbackFilterIterator and RecursiveCallbackFilterIterator classes

[DOC] This is a concrete FilterIterator which takes a callback as
constructor parameter, and uses this callback f

Added CallbackFilterIterator and RecursiveCallbackFilterIterator classes

[DOC] This is a concrete FilterIterator which takes a callback as
constructor parameter, and uses this callback for filtering. This allows
to use FilterIterator without extending it.

CallbackFilterIterator Example:

$it = new ArrayIterator(range(1,100));
$it = new CallbackFilterIterator($it, function($value) {
return $value % 2;
});
foreach($it as $value) // ...

RecursiveCallbackFilterIterator Example:

$it = new RecursiveDirectoryIterator("/");
$it = new RecursiveCallbackFilterIterator($it, function($file, $k, $it) {
return $it->hasChildren() || $file->getSize() > 1024;
});
foreach(new RecursiveIteratorIterator($it) as $file) // ...

The callback takes the current value, the current key and the inner
iterator as parameters.

show more ...

# 4929964a 26-Mar-2011 Felipe Pena

- Fixed bug #54395 (Phar::mount() crashes when calling with wrong parameters)

# 018013e5 24-Mar-2011 Andrey Hristov

here comes the news

# f2ce3e02 24-Mar-2011 Ilia Alshanetsky

Fixed a crash inside dtor for error handling.

# 0ab7f1ce 23-Mar-2011 Felipe Pena

- Fixed bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())

# 5b85234b 23-Mar-2011 Felipe Pena

- Fixed bug #54283 (new DatePeriod(NULL) causes crash)

# 660aa670 23-Mar-2011 Gustavo André dos Santos Lopes

- Updating UPGRADING for r309516 and modest merge to 5.3.

# 0dd448cb 22-Mar-2011 Felipe Pena

- Fixed bug #54281 (Crash in non-initialized RecursiveIteratorIterator)

# c5c87c5f 22-Mar-2011 Adam Harvey

Fix bug #54318 (Non-portable grep option used in PDO pgsql configuration).
Patch by Ben Walton <bwalton at artsci dot utoronto dot ca>.

# 334d2df8 22-Mar-2011 Adam Harvey

Fix bug #54340 (DateTime::add() method bug).

# 68811c47 21-Mar-2011 Adam Harvey

Fix bug #54316 (DateTime::createFromFormat does not handle trailing '|'
correctly).

# f06e3ba5 19-Mar-2011 Gustavo André dos Santos Lopes

- Fixed bug #54291 (Crash iterating DirectoryIterator for dir name starting
with \0).

# 8a48311a 19-Mar-2011 Felipe Pena

- BFN

# 5b55a186 18-Mar-2011 Raphael Geissert

Add the libraries we actually test and need for LDAP and OpenSSL, fixes bug #53339
Patch by Clint Byrum

# 5a53a743 17-Mar-2011 Pierrick Charron

Fixed bug #54180 (parse_url() incorrectly parses path when ? in fragment)

# be878343 17-Mar-2011 Gustavo André dos Santos Lopes

- Merged fix for bug #51958 socket_accept() fails on IPv6 server sockets.
See r309238 for commit in trunk.

# d37dea8b 17-Mar-2011 Felipe Pena

- BFN

# 07aa25b4 17-Mar-2011 Johannes Schlüter

- Fixed bug #54265 (crash when variable gets reassigned in error handler)

(re-apply 309308, dmitry)

# 5fb54640 17-Mar-2011 Andrey Hristov

here comes the news

# 27e640fd 17-Mar-2011 Johannes Schlüter

- Back to dev

Revision tags: php-5.3.6
# f5687db3 17-Mar-2011 Johannes Schlüter

PHP 5.3.6

# 6f15da05 17-Mar-2011 Johannes Schlüter

- Revert r309308 temporarily to get 5.3.6 out

1...<<411412413414415416417418419420>>...619