Skip to content

Commit 1ca4aca

Browse files
author
committed
ChangeLog update
1 parent 8838b38 commit 1ca4aca

File tree

2 files changed

+154
-0
lines changed

2 files changed

+154
-0
lines changed

ChangeLog

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,131 @@
1+
2004-04-03 Andi Gutmans <andi@zend.com>
2+
3+
* ZendEngine2/zend_builtin_functions.c:
4+
Patch by Timm Friebe:
5+
It changes
6+
set_exception_handler() to accept the pseudo-type "callable" (instead of
7+
a string referring to a global function).
8+
9+
10+
Examples:
11+
set_exception_handler('function_name');
12+
set_exception_handler(array('class_name', 'static_method'));
13+
set_exception_handler(array($instance, 'instance_method'));
14+
15+
16+
This also makes set_exception_handler() more consistent with all the
17+
other callback functionality, e.g. set_error_handler().
18+
19+
2004-04-03 Derick Rethans <php@derickrethans.nl>
20+
21+
* ext/mbstring/config.m4:
22+
- MFB: Fixed bug #27849 (configure craps out on trivial syntax error).
23+
24+
* (PHP_4_3)
25+
NEWS
26+
ext/mbstring/config.m4:
27+
- Fixed bug #27849 (configure craps out on trivial syntax error).
28+
29+
2004-04-03 Andi Gutmans <andi@zend.com>
30+
31+
* ZendEngine2/zend_operators.c:
32+
- Nuke more old junk
33+
34+
2004-04-03 Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl>
35+
36+
* ext/standard/config.m4:
37+
That should do it
38+
39+
2004-04-03 Greg Beaver <greg@chiaraquartet.net>
40+
41+
* (PHP_4_3)
42+
pear/PEAR/Command/Remote.php:
43+
MFH
44+
fixed #534 for real (remove notice if state=stable doesn't exist, and use
45+
"none" for stable version number)
46+
47+
* pear/PEAR/Command/Remote.php:
48+
fixed #534 for real (remove notice if state=stable doesn't exist, and use
49+
"none" for stable version number)
50+
51+
2004-04-03 Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl>
52+
53+
* ext/interbase/tests/008.phpt:
54+
Skip on Windows
55+
56+
* ext/interbase/tests/interbase.inc:
57+
Don't rely on OS-based authentication (as it is not supported under Win32)
58+
59+
2004-04-03 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
60+
61+
* ext/sqlite/sqlite.c
62+
ext/sqlite/tests/sqlite_014.phpt
63+
ext/sqlite/tests/sqlite_oo_014.phpt:
64+
Increase severity level and use a more precise error message.
65+
66+
2004-04-03 Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl>
67+
68+
* (PHP_4_3)
69+
ext/standard/config.m4:
70+
2nd try for glibc2.2/sparc64
71+
72+
2004-04-03 Andi Gutmans <andi@zend.com>
73+
74+
* ZendEngine2/zend.h
75+
ZendEngine2/zend_operators.c
76+
ZendEngine2/zend_operators.h:
77+
- Nuke code which hasn't been in use for ages.
78+
79+
2004-04-03 Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl>
80+
81+
* ext/interbase/tests/004.phpt:
82+
fclose() tempfile so unlink() doesn't choke on Win32
83+
84+
* ext/interbase/interbase.c:
85+
Change definition of ISC_LONG_[MIN|MAX] to please MSVC.
86+
87+
* ext/standard/config.m4:
88+
MFB: more elaborate HUGE_VAL test
89+
90+
2004-04-03 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
91+
92+
* ext/standard/basic_functions.c:
93+
Initialize to 0 to prevent valgrind warnings
94+
95+
2004-04-03 Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl>
96+
97+
* (PHP_4_3)
98+
ext/standard/config.m4:
99+
Changed test to include returning HUGE_VAL as well (intended to resolve
100+
#27830)
101+
102+
2004-04-03 Greg Beaver <greg@chiaraquartet.net>
103+
104+
* (PHP_4_3)
105+
pear/PEAR.php
106+
pear/package-PEAR.xml:
107+
MFH
108+
fix Bug #937 throwError() treats every call as static
109+
fix Bug #964 PEAR_ERROR_EXCEPTION causes fatal error
110+
111+
* pear/PEAR.php
112+
pear/package-PEAR.xml:
113+
fix Bug #937 throwError() treats every call as static
114+
fix Bug #964 PEAR_ERROR_EXCEPTION causes fatal error
115+
116+
* (PHP_4_3)
117+
pear/package-PEAR.xml
118+
pear/PEAR/Command/Remote.php:
119+
MFH fix #534: pear search doesn't list unstable releases
120+
121+
* pear/package-PEAR.xml
122+
pear/PEAR/Command/Remote.php:
123+
fix #534: pear search doesn't list unstable releases
124+
125+
* pear/package-PEAR.xml
126+
pear/package-PEAR.xml:
127+
not devel any more
128+
1129
2004-04-02 Derick Rethans <php@derickrethans.nl>
2130

3131
* ext/standard/parsedate.y:

Zend/ChangeLog

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
2004-04-03 Andi Gutmans <andi@zend.com>
2+
3+
* zend_builtin_functions.c:
4+
Patch by Timm Friebe:
5+
It changes
6+
set_exception_handler() to accept the pseudo-type "callable" (instead of
7+
a string referring to a global function).
8+
9+
10+
Examples:
11+
set_exception_handler('function_name');
12+
set_exception_handler(array('class_name', 'static_method'));
13+
set_exception_handler(array($instance, 'instance_method'));
14+
15+
16+
This also makes set_exception_handler() more consistent with all the
17+
other callback functionality, e.g. set_error_handler().
18+
19+
* zend_operators.c:
20+
- Nuke more old junk
21+
22+
* zend.h
23+
zend_operators.c
24+
zend_operators.h:
25+
- Nuke code which hasn't been in use for ages.
26+
127
2004-04-01 Ilia Alshanetsky <ilia@prohost.org>
228

329
* zend_builtin_functions.c:

0 commit comments

Comments
 (0)