Skip to content

Commit 704bbb3

Browse files
committed
PHP 5.3.11
1 parent b9562b3 commit 704bbb3

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

NEWS

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,10 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
12 Apr 2012, PHP 5.3.11RC2
3+
26 Apr 2012, PHP 5.3.11
44

55
- Core:
66
. Fixed bug #61650 (ini parser crashes when using ${xxxx} ini variables
77
(without apache2)). (Laruence)
8-
9-
- Fileinfo
10-
. Upgraded libmagic to 5.11 (Pierre, Anatoliy)
11-
. Fixed bug #61565 where php_stream_open_wrapper_ex tries to open a
12-
directory descriptor under windows. (Anatoliy)
13-
. Fixed bug #61566 failure caused by the posix lseek and read versions
14-
under windows in cdf_read(). (Anatoliy)
15-
16-
- pgsql:
17-
. Fixed bug #60718 (Compile problem with libpq (PostgreSQL 7.3 or less).
18-
(Yasuo Ohgaki)
19-
20-
29 Mar 2012, PHP 5.3.11RC1
21-
22-
- Core:
238
. Fixed bug #61273 (call_user_func_array with more than 16333 arguments
249
leaks / crashes). (Laruence)
2510
. Fixed bug #61165 (Segfault - strip_tags()). (Laruence)
@@ -66,6 +51,11 @@ PHP NEWS
6651
. Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
6752

6853
- Fileinfo
54+
. Upgraded libmagic to 5.11 (Pierre, Anatoliy)
55+
. Fixed bug #61565 where php_stream_open_wrapper_ex tries to open a
56+
directory descriptor under windows. (Anatoliy)
57+
. Fixed bug #61566 failure caused by the posix lseek and read versions
58+
under windows in cdf_read(). (Anatoliy)
6959
. Fixed bug #61173 (Unable to detect error from finfo constructor). (Gustavo)
7060

7161
- Firebird Database extension (ibase):
@@ -94,6 +84,10 @@ PHP NEWS
9484
- PDO_Sqlite extension:
9585
. Add createCollation support. (Damien)
9686

87+
- pgsql:
88+
. Fixed bug #60718 (Compile problem with libpq (PostgreSQL 7.3 or less).
89+
(Yasuo Ohgaki)
90+
9791
- Phar:
9892
. Fixed bug #61184 (Phar::webPhar() generates headers with trailing NUL
9993
bytes). (Nikic)

configure.in

Lines changed: 1 addition & 1 deletion
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=11
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

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 3
55
#define PHP_RELEASE_VERSION 11
6-
#define PHP_EXTRA_VERSION "RC2"
7-
#define PHP_VERSION "5.3.11RC2"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.3.11"
88
#define PHP_VERSION_ID 50311

0 commit comments

Comments
 (0)