History log of /php-src/NEWS (Results 10426 – 10450 of 15462)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# d9039485 13-Jan-2011 Scott MacVicar

Add Spoofchecker to intl extension.

Implements part of Unicode TR36 and TR39

# 58810bd0 12-Jan-2011 Derick Rethans

- Fixed bug #53729 (DatePeriod fails to initialize recurrences on 64bit
big-endian systems). (Patch by rein@basefarm.no)

# 484a3537 10-Jan-2011 Ilia Alshanetsky

Fixed bug #53630 (Fixed parameter handling inside readline() function).

# 69a3575b 07-Jan-2011 Kalle Sommer Nielsen

Implemented FR #39847 (mysqli_fetch_[field|fields|field_direct] need to return db)

# e4c36b05 07-Jan-2011 Kalle Sommer Nielsen

Implemented FR #47802, support for character sets in DSN strings for PDO_MYSQL

# eaaef0d8 07-Jan-2011 Andrey Hristov

Proper fix for
Bug #53503 mysqli::query returns false after successful LOAD DATA query
which fixes als #56349, same behavior but in ext/mysql. Both due to a bug
in mysqlnd. Never was

Proper fix for
Bug #53503 mysqli::query returns false after successful LOAD DATA query
which fixes als #56349, same behavior but in ext/mysql. Both due to a bug
in mysqlnd. Never was a problem with libmysql.
Also fixed the 53503's test case as it always reported PASS, even when there
should have been a failure.

show more ...

# 29a82ceb 07-Jan-2011 Felipe Pena

- Fixed memory leak on SQLite3Result and SQLite3Stmt when assigning to a reference.

Revision tags: php-5.2.17
# 9107b209 06-Jan-2011 Rasmus Lerdorf

Fix bug #53682

# e14c8f39 06-Jan-2011 Pierre Joye

- add CVE (too late for the release tho')

# 3571c955 06-Jan-2011 Adam Harvey

Implement request #53659 (Implementing RegexIterator::getRegex() method). Patch
by Joshua Thijssen.

# e1c1cc0e 06-Jan-2011 Scott MacVicar

Implemented FR #53466 (SQLite3Result::columnType() should return false after all of the rows have been fetched).

Revision tags: php-5.3.5
# df344ea7 05-Jan-2011 Johannes Schlüter

- This will be PHP 5.3.6

# 66753ff6 04-Jan-2011 Scott MacVicar

Fix bug #53632 with x87 fpu

# d1eb2cd7 03-Jan-2011 Hannes Magnusson

My name is Hannes
# And today is my birthday \o/

# 3f5ad237 03-Jan-2011 Ilia Alshanetsky

Fixed Bug #53629 (memory leak inside highlight_string()).

# 7d3a0e15 03-Jan-2011 Stanislav Malyshev

Imlement clone for formatters that support it
# also some test fixes, more to follow

# 6144da7e 31-Dec-2010 Scott MacVicar

Silently casting an empty string, null or false into an object by adding a property
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can'

Silently casting an empty string, null or false into an object by adding a property
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can't break BC completely (yet) lets bump this from E_STRICT.

Also added a new section to UPGRADING for engine changes.

<?php
$x = '';
// $x = null;
// $x = false;
$x->baz = 1;
var_dump($x);

$y = 1;
$y->baz = 1;
var_dump($y);

show more ...

# 3870e587 31-Dec-2010 Scott MacVicar

Add SQLite3_Stmt::readOnly for checking if a statement is read only

# 9ec9210f 27-Dec-2010 Gustavo André dos Santos Lopes

- Fixed bug #53612 (Segmentation fault when using several cloned intl
objects).

# e7d5c4a8 24-Dec-2010 Gustavo André dos Santos Lopes

- Fixed bug #53603 (ZipArchive should quiet stat errors).
#It is unclear if url_stat handlers should emit a warning in case
#PHP_STREAM_URL_STAT_QUIET is not specified and the resource does

- Fixed bug #53603 (ZipArchive should quiet stat errors).
#It is unclear if url_stat handlers should emit a warning in case
#PHP_STREAM_URL_STAT_QUIET is not specified and the resource does
#not exist. Most url_stat handlers never emit messages; the plain
#one does only so in the extraordinary event of an open_basedir
#restriction.
#But in case, php_stat uses PHP_STREAM_URL_STAT_QUIET for the
#FS_EXISTS, which suggests that mere checks on file existence are
#supposed to use this flag (arguably).
#The downside is that important diagnostic messages might be
#omitted.

show more ...

# 34c6447e 24-Dec-2010 Ilia Alshanetsky

Upgraded\ bundled\ PCRE\ to\ version\ 8.11.

# 25f42c09 24-Dec-2010 Peter Cowburn

NEWS for FR #48767 (SplFileInfo::getExtension())

# cd34d68c 23-Dec-2010 Gustavo André dos Santos Lopes

- Fixed bug #53592 (stream_socket_enable_crypto() busy-waits in client mode).
- Fixed stream_socket_enable_crypto() not honoring the socket timeout in
server mode.

# a6886496 22-Dec-2010 Ilia Alshanetsky

Fixed bug #52209 (INPUT_ENV returns NULL for set variables (CLI)).

# 8f44d2ca 21-Dec-2010 Gustavo André dos Santos Lopes

- Revert of revision 306542, turns out the semantics of compare() are
different in SplMinHeap and SplMaxHeap.

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