Skip to content

Commit 61e60f4

Browse files
author
committed
ChangeLog update
1 parent c94eeb9 commit 61e60f4

File tree

2 files changed

+165
-0
lines changed

2 files changed

+165
-0
lines changed

ChangeLog

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,115 @@
1+
2003-04-02 Rasmus Lerdorf <rasmus@lerdorf.com>
2+
3+
* ext/bcmath/bcmath.c:
4+
MFB: Check for negative precision
5+
6+
* (PHP_4_3)
7+
TODO_SEGFAULTS
8+
ext/bcmath/bcmath.c:
9+
Negative precision makes no sense, so check for that, but let the memory
10+
manager error out on huge non-negative precision args
11+
12+
* ext/standard/basic_functions.c:
13+
MFB: Fix unregister_tick_function crash
14+
15+
* (PHP_4_3)
16+
TODO_SEGFAULTS
17+
ext/standard/basic_functions.c:
18+
Fix unregister_tick_function crash
19+
20+
2003-04-02 Georg Richter <georg.richter@phpev.de>
21+
22+
* ext/mysqli/tests/028.phpt
23+
ext/mysqli/tests/042.phpt:
24+
fixed expected output
25+
26+
2003-04-02 Rasmus Lerdorf <rasmus@lerdorf.com>
27+
28+
* ext/exif/exif.c:
29+
MFB: Get rid of bogus dtors
30+
31+
* (PHP_4_3)
32+
ext/exif/exif.c:
33+
Get rid of bogus dtors
34+
35+
* ext/standard/string.c:
36+
MFB: Fix the setlocale() segfault
37+
38+
* (PHP_4_3)
39+
TODO_SEGFAULTS
40+
ext/standard/string.c:
41+
Fix the setlocale() segfault
42+
43+
2003-04-02 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
44+
45+
* configure.in:
46+
For now only bison 1.28, 1.35 and 1.75 are working properly
47+
48+
2003-04-02 Derick Rethans <d.rethans@jdimedia.nl>
49+
50+
* sapi/apache/.cvsignore:
51+
- Update for new name
52+
53+
2003-04-02 Jani Taskinen <sniper@iki.fi>
54+
55+
* (PHP_4_3)
56+
NEWS:
57+
BFN
58+
59+
2003-04-02 Sterling Hughes <sterling@bumblebury.com>
60+
61+
* ext/curl/multi.c:
62+
add the ability for curl_multi_info to introspect the handles.
63+
64+
65+
2003-04-02 Colin Viebrock <colin@easydns.com>
66+
67+
* ext/standard/basic_functions.c
68+
ext/standard/info.c
69+
ext/standard/info.h:
70+
fixes for logo guid functions
71+
72+
* main/logos.h:
73+
oops ... committed the wrong one
74+
75+
* main/logos.h:
76+
fix logo (outline around letters)
77+
78+
2003-04-02 Edin Kadribasic <edink@proventum.net>
79+
80+
* (PHP_4_3)
81+
NEWS:
82+
BFN
83+
84+
* ext/ldap/ldap.dsp:
85+
Fixed bug #23008
86+
87+
2003-04-02 Christian Stocker <chregu@phant.ch>
88+
89+
* ext/domxml/php_domxml.c
90+
ext/domxml/php_domxml.c:
91+
Patch for Bug #22774 by Rob Richards
92+
93+
2003-04-02 Sara Golemon <php@alphaweb.net>
94+
95+
* tests/strings/002.phpt:
96+
Avoid having output_buffering cause this test to improperly fail.
97+
98+
* ext/standard/tests/file/userfilters.phpt:
99+
New test for userfilters rewrite
100+
101+
2003-04-02 Ilia Alshanetsky <ilia@prohost.org>
102+
103+
* ext/standard/string.c:
104+
Fixed possible integer overflow in str_repeat().
105+
106+
2003-04-02 Jay Smith <jsmith@tutorbuddy.com>
107+
108+
* (PHP_4_3)
109+
ext/pgsql/pgsql.c
110+
ext/pgsql/php_pgsql.h:
111+
MFH
112+
1113
2003-04-01 Jay Smith <jsmith@tutorbuddy.com>
2114

3115
* ext/pgsql/pgsql.c

Zend/ChangeLog

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
2003-04-02 Andrei Zmievski <andrei@gravitonic.com>
2+
3+
* zend_API.c
4+
zend_API.h:
5+
- Add zend_register_internal_namespace() API function.
6+
- Add zend_register_internal_class_in_ns() API function.
7+
8+
* zend_compile.h:
9+
Simplify.
10+
11+
2003-04-02 Derick Rethans <d.rethans@jdimedia.nl>
12+
13+
* zend_list.c:
14+
- Fix whitespace
15+
16+
2003-04-02 Sterling Hughes <sterling@bumblebury.com>
17+
18+
* zend_list.c
19+
zend_list.h:
20+
add the ability for curl_multi_info to introspect the handles.
21+
22+
23+
2003-04-02 Andrei Zmievski <andrei@gravitonic.com>
24+
25+
* zend_compile.c
26+
zend_compile.h
27+
zend_globals.h
28+
zend_language_parser.y
29+
zend_language_scanner.l:
30+
Implement a different way to catch documentation comments.
31+
32+
* zend_compile.c
33+
zend_compile.h
34+
zend_highlight.c
35+
zend_language_parser.y
36+
zend_language_scanner.l:
37+
Revert portions of the doc comment patch. There should be no parser
38+
errors now.
39+
40+
2003-04-02 Stanislav Malyshev <stas@zend.com>
41+
42+
* zend_builtin_functions.c
43+
zend_compile.h
44+
zend_execute.c:
45+
allow class_exists() to work with namespaces too.
46+
add CLASS_IS_NAMESPACE macro
47+
48+
* zend_builtin_functions.c:
49+
fix typo
50+
51+
* zend_builtin_functions.c:
52+
fix parameterless get_declared_classes call
53+
154
2003-04-01 Andrei Zmievski <andrei@gravitonic.com>
255

356
* zend_execute.c:

0 commit comments

Comments
 (0)