Skip to content

Commit 13616e8

Browse files
committed
PHP 5.3.22
1 parent 229edf4 commit 13616e8

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

NEWS

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
14 Feb 2013, PHP 5.3.22RC2
4-
- SOAP
5-
. Added check that soap.wsdl_cache_dir conforms to open_basedir
6-
(CVE-2013-1635). (Dmitry)
7-
. Disabled external entities loading (CVE-2013-1643). (Dmitry)
8-
9-
31 Jan 2013, PHP 5.3.22RC1
3+
21 Feb 2013, PHP 5.3.22
104

115
- Zend Engine:
126
. Fixed bug #64099 (Wrong TSRM usage in zend_Register_class alias). (Johannes)
@@ -23,6 +17,11 @@ PHP NEWS
2317
- FPM:
2418
. Fixed bug #63999 (php with fpm fails to build on Solaris 10 or 11). (Adam)
2519

20+
- SOAP
21+
. Added check that soap.wsdl_cache_dir conforms to open_basedir
22+
(CVE-2013-1635). (Dmitry)
23+
. Disabled external entities loading (CVE-2013-1643). (Dmitry)
24+
2625
- SPL:
2726
. Fixed bug #64106 (Segfault on SplFixedArray[][x] = y when extended). (Nikita Popov)
2827

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
4242
PHP_MAJOR_VERSION=5
4343
PHP_MINOR_VERSION=3
4444
PHP_RELEASE_VERSION=22
45-
PHP_EXTRA_VERSION="RC2"
45+
PHP_EXTRA_VERSION=""
4646
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
4747
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
4848

main/php_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 3
55
#define PHP_RELEASE_VERSION 22
6-
#define PHP_EXTRA_VERSION "RC2"
7-
#define PHP_VERSION "5.3.22RC2"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.3.22"
88
#define PHP_VERSION_ID 50322

0 commit comments

Comments
 (0)