Skip to content

Commit fe23849

Browse files
author
Andi Gutmans
committed
- Beta 2
1 parent 50d32d4 commit fe23849

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

NEWS

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2005, PHP 5.1 Beta 3?
4-
- Fixed bug #33427 (ext/odbc: check if unixODBC header file exists). (Jani)
5-
- Fixed bug #33299 (php:function no longer handles returned dom objects).
6-
(Rob, Joe Orton)
7-
- Fixed bug #33257 (array_splice() inconsistent when passed function instead
8-
of variable). (Dmitry)
9-
- Fixed bug #29896 (Backtrace argument list out of sync). (Dmitry)
10-
- Fixed bug #15854 (boolean ini options may be incorrectly displayed as Off
11-
when they are On). (Tony)
12-
13-
21 Jun 2005, PHP 5.1 Beta 2
3+
22 Jun 2005, PHP 5.1 Beta 2
144
- Improved PHP extension loading mechanism with support for module dependencies
155
and conflicts. (Jani, Dmitry)
166
- Allowed return by reference from internal functions. (Marcus, Andi, Dmitry)
@@ -27,31 +17,39 @@ PHP NEWS
2717
shutdown). (Wez)
2818
- Fixed PECL bug #3714 (PDO: beginTransaction doesn't work if you're in
2919
auto-commit mode). (Wez)
20+
- Fixed bug #33427 (ext/odbc: check if unixODBC header file exists). (Jani)
3021
- Fixed bug #33389 (double free() when exporting a ReflectionClass). (Marcus)
3122
- Fixed bug #33382 (array_reverse() fails after *sort()),
3223
introduced by zend_hash_sort() optimizations in HEAD. (Tony)
3324
- Fixed bug #33340 (CLI Crash when calling php:function from XSLT). (Rob)
3425
- Fixed bug #33318 (throw 1; results in Invalid opcode 108/1/8). (Dmitry)
3526
- Fixed bug #33312 (ReflectionParameter methods do not work correctly).
3627
(Dmitry)
28+
- Fixed bug #33299 (php:function no longer handles returned dom objects).
29+
(Rob, Joe Orton)
3730
- Fixed bug #33286 (nested array_walk() calls and user array compare functions
3831
broken; FCI cache). (Andrei, patch from m.bretz@metropolis-ag.de)
3932
- Fixed bug #33277 (private method accessed by child class). (Dmitry)
33+
- Fixed bug #33257 (array_splice() inconsistent when passed function instead
34+
of variable). (Dmitry)
4035
- Fixed bug #33212 ([GCC 4]: 'zend_error_noreturn' aliased to external symbol
4136
'zend_error'). (Dmitry)
4237
- Fixed bug #33150 (shtool: insecure temporary file creation). (Jani)
4338
- Fixed bug #33136 (method offsetSet in class extended from ArrayObject crash
4439
PHP). (Marcus)
40+
- Fixed bug #32160 (copying a file into itself leads to data loss). (Ilia)
4541
- Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle -pthread).
4642
(Jani)
4743
- Fixed bug #31213 (Sideeffects caused by fix of bug #29493). (Dmitry)
48-
- Fixed bug #32160 (copying a file into itself leads to data loss). (Ilia)
4944
- Fixed bug #31054 (safe_mode & open_basedir checks only check first
5045
include_path value). (Ilia)
46+
- Fixed bug #29896 (Backtrace argument list out of sync). (Dmitry)
5147
- Fixed bug #29683 (headers_list() returns empty array). (Tony)
5248
- Fixed bug #28355 (glob wont error if dir is not readable). (Hartmut)
5349
- Fixed bugs #20382, #28024, #30532, #32086, #32270, #32555, #32588, #33056
5450
(strtotime() related bugs). (Derick)
51+
- Fixed bug #15854 (boolean ini options may be incorrectly displayed as Off
52+
when they are On). (Tony)
5553

5654
10 Jun 2005, PHP 5.1 Beta 1
5755
- Upgraded PCRE library to version 5.0. (Andrei)

Zend/zend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#ifndef ZEND_H
2323
#define ZEND_H
2424

25-
#define ZEND_VERSION "2.1.0-dev"
25+
#define ZEND_VERSION "2.1.0b2"
2626

2727
#define ZEND_ENGINE_2
2828

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
MAJOR_VERSION=5
4343
MINOR_VERSION=1
4444
RELEASE_VERSION=0
45-
EXTRA_VERSION="-dev"
45+
EXTRA_VERSION="b2"
4646
VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION"
4747

4848
dnl Define where extension directories are located in the configure context

main/php_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 1
55
#define PHP_RELEASE_VERSION 0
6-
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.1.0-dev"
6+
#define PHP_EXTRA_VERSION "b2"
7+
#define PHP_VERSION "5.1.0b2"

0 commit comments

Comments
 (0)