Skip to content

Commit 0183c29

Browse files
committed
5.4.12
1 parent 904d220 commit 0183c29

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

NEWS

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
14 Feb 2012, PHP 5.4.12 RC2
4-
5-
- SOAP
6-
. Added check that soap.wsdl_cache_dir conforms to open_basedir
7-
(CVE-2013-1635). (Dmitry)
8-
. Disabled external entities loading (CVE-2013-1643). (Dmitry)
9-
10-
31 Jan 2012, PHP 5.4.12 RC1
3+
21 Feb 2012, PHP 5.4.12
114

125
- Core:
136
. Fixed bug #64099 (Wrong TSRM usage in zend_Register_class alias). (Johannes)
@@ -39,7 +32,12 @@ PHP NEWS
3932
- Litespeed:
4033
. Fixed bug #63228 (-Werror=format-security error in lsapi code). (George)
4134

42-
- ext/sqlite3:
35+
- SOAP
36+
. Added check that soap.wsdl_cache_dir conforms to open_basedir
37+
(CVE-2013-1635). (Dmitry)
38+
. Disabled external entities loading (CVE-2013-1643). (Dmitry)
39+
40+
- sqlite3:
4341
. Fixed bug #63921 (sqlite3::bindvalue and relative PHP functions aren't
4442
using sqlite3_*_int64 API). (srgoogleguy, Lars)
4543

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=4
122122
PHP_RELEASE_VERSION=12
123-
PHP_EXTRA_VERSION="RC2"
123+
PHP_EXTRA_VERSION=""
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
125125
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
126126

main/php_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 4
55
#define PHP_RELEASE_VERSION 12
6-
#define PHP_EXTRA_VERSION "RC2"
7-
#define PHP_VERSION "5.4.12RC2"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.4.12"
88
#define PHP_VERSION_ID 50412

0 commit comments

Comments
 (0)