summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2010-02-24 12:23:46 +0000
committerIlia Alshanetsky <iliaa@php.net>2010-02-24 12:23:46 +0000
commit6822134c9d8b8944074b6414f50349b5263a0f60 (patch)
treef8eee331ab55e56a245ce2107e47a2c8d918ea9f
parentd10ba88769fc1083f989ae7ba53d733bac9ef1b3 (diff)
downloadphp-git-6822134c9d8b8944074b6414f50349b5263a0f60.tar.gz
5.2.13
-rw-r--r--NEWS44
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 22 insertions, 28 deletions
diff --git a/NEWS b/NEWS
index 0e45222420..e5fc410f48 100644
--- a/NEWS
+++ b/NEWS
@@ -1,31 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Feb 2010, PHP 5.2.13
-
-11 Feb 2010, PHP 5.2.13RC2
-- Downgrade bundled PCRE to version 7.9. (Ilia)
-- Fixed safe_mode validation inside tempnam() when the directory path does
- not end with a /). (Martin Jansen)
-- Fixed a possible open_basedir/safe_mode bypass in session extension
- identified by Grzegorz Stachowiak. (Ilia)
-
-- Fixed bug #50940 Custom content-length set incorrectly in Apache sapis.
- (Brian France, Rasmus)
-- Fixed bug #50930 (Wrong date by php_date.c patch with ancient gcc/glibc
- versions). (Derick)
-- Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes
- long). (Ilia)
-- Fixed bug #50727 (Accessing mysqli->affected_rows on no connection causes
- segfault). (Andrey, Johannes)
-- Fixed bug #49585 (date_format buffer not long enough for >4 digit years).
- (Derick, Adam)
-- Fixed bug #48667 (Implementing Iterator and IteratorAggregate). (Etienne)
-- Fixed bug #47601 (defined() requires class to exist when testing for class
- constants). (Ilia)
-
-28 Jan 2010, PHP 5.2.13RC1
+25 Feb 2010, PHP 5.2.13
- Updated timezone database to version 2010.2. (Derick)
-- Upgraded bundled PCRE to version 8.01. (Ilia)
+- Upgraded bundled PCRE to version 7.9. (Ilia)
- Removed automatic file descriptor unlocking happening on shutdown and/or
stream close (on all OSes excluding Windows). (Tony, Ilia)
@@ -37,12 +14,22 @@ PHP NEWS
- Improved LCG entropy. (Rasmus, Samy Kamkar)
+- Fixed safe_mode validation inside tempnam() when the directory path does
+ not end with a /). (Martin Jansen)
+- Fixed a possible open_basedir/safe_mode bypass in session extension
+ identified by Grzegorz Stachowiak. (Ilia)
- Fixed bug in bundled libgd causing spurious horizontal lines drawn by
gdImageFilledPolygon (libgd #100). (Takeshi Abe)
- Fixed build of mysqli with MySQL 5.5.0-m2. (Andrey)
+- Fixed bug #50940 Custom content-length set incorrectly in Apache sapis.
+ (Brian France, Rasmus)
+- Fixed bug #50930 (Wrong date by php_date.c patch with ancient gcc/glibc
+ versions). (Derick)
- Fixed bug #50859 (build fails with openssl 1.0 due to md2 deprecation).
(Ilia, hanno at hboeck dot de)
+- Fixed bug #50847 (strip_tags() removes all tags greater then 1023 bytes
+ long). (Ilia)
- Fixed bug #50832 (HTTP fopen wrapper does not support passwordless HTTP
authentication). (Jani)
- Fixed bug #50823 (ReflectionFunction::isDeprecated producing "cannot be called
@@ -58,6 +45,8 @@ PHP NEWS
- Fixed bug #50732 (exec() adds single byte twice to $output array). (Ilia)
- Fixed bug #50728 (All PDOExceptions hardcode 'code' property to 0). (Joey,
Ilia)
+- Fixed bug #50727 (Accessing mysqli->affected_rows on no connection causes
+ segfault). (Andrey, Johannes)
- Fixed bug #50680 (strtotime() does not support eighth ordinal number).
(Ilia)
- Fixed bug #50661 (DOMDocument::loadXML does not allow UTF-16). (Rob)
@@ -78,10 +67,15 @@ PHP NEWS
- Fixed bug #50394 (Reference argument converted to value in __call). (Stas)
- Fixed bug #49851 (http wrapper breaks on 1024 char long headers). (Ilia)
- Fixed bug #49600 (imageTTFText text shifted right). (Takeshi Abe)
+- Fixed bug #49585 (date_format buffer not long enough for >4 digit years).
+ (Derick, Adam)
- Fixed bug #49463 (setAttributeNS fails setting default namespace). (Rob)
+- Fixed bug #48667 (Implementing Iterator and IteratorAggregate). (Etienne)
- Fixed bug #48590 (SoapClient does not honor max_redirects). (Sriram)
- Fixed bug #48190 (Content-type parameter "boundary" is not case-insensitive
in HTTP uploads). (Ilia)
+- Fixed bug #47601 (defined() requires class to exist when testing for class
+ constants). (Ilia)
- Fixed bug #47409 (extract() problem with array containing word "this").
(Ilia, chrisstocktonaz at gmail dot com)
- Fixed bug #47002 (Field truncation when reading from dbase dbs with more
diff --git a/configure.in b/configure.in
index f78dc091cc..db8463bd14 100644
--- a/configure.in
+++ b/configure.in
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=2
PHP_RELEASE_VERSION=13
-PHP_EXTRA_VERSION="RC3-dev"
+PHP_EXTRA_VERSION=""
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 5fad15df6c..a36b560865 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 2
#define PHP_RELEASE_VERSION 13
-#define PHP_EXTRA_VERSION "RC3-dev"
-#define PHP_VERSION "5.2.13RC3-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.2.13"
#define PHP_VERSION_ID 50213