Commit: e9354b53665e2d313f07d48ce3d227cc61a068dc Author: Johannes Schlüter <[email protected]> Tue, 8 May 2012 11:22:27 +0200 Parents: 46d9cc3de9f2def8ab84d0b83cc89b6f85d7506a Branches: PHP-5.3.13
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=e9354b53665e2d313f07d48ce3d227cc61a068dc Log: PHP 5.3.13 Changed paths: M NEWS M configure.in M main/php_version.h Diff: diff --git a/NEWS b/NEWS index 6d95962..124054e 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,11 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -03 Mar 2012, PHP 5.3.12 +08 May 2012, PHP 5.3.13 +- CGI + . Improve fix for PHP-CGI query string parameter vulnerability, CVE-2012-2311. + (Stas) + +03 May 2012, PHP 5.3.12 - Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus) 26 Apr 2012, PHP 5.3.11 diff --git a/configure.in b/configure.in index e9cf322..f8241e6 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=3 -PHP_RELEASE_VERSION=12 +PHP_RELEASE_VERSION=13 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 5103b1c..f4753a2 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -4,5 +4,5 @@ #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 12 #define PHP_EXTRA_VERSION "" -#define PHP_VERSION "5.3.12" -#define PHP_VERSION_ID 50312 +#define PHP_VERSION "5.3.13" +#define PHP_VERSION_ID 50313 -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
