Skip to content

Commit f066470

Browse files
author
committed
ChangeLog update
1 parent fac8eaf commit f066470

File tree

2 files changed

+117
-0
lines changed

2 files changed

+117
-0
lines changed

ChangeLog

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,99 @@
1+
2002-10-14 Jani Taskinen <sniper@iki.fi>
2+
3+
* ext/iconv/tests/translit-failure.phpt:
4+
This test should not print out the error (which is correct).
5+
6+
2002-10-14 Edin Kadribasic <edink@proventum.net>
7+
8+
* sapi/embed/config.m4:
9+
Respect INSTALL_ROOT var. Thanks to Jani for catching this one.
10+
11+
2002-10-14 Tal Peer <tal@kaktos.co.il>
12+
13+
* pear/PEAR/Installer.php:
14+
* Fixed a nasty bug preventing installation of pecl exts.
15+
16+
2002-10-14 Ilia Alshanetsky <ilia@prohost.org>
17+
18+
* ext/standard/browscap.c: Fixed bug #19649.
19+
20+
* ext/standard/tests/general_functions/001.phpt:
21+
Added float printing tests.
22+
23+
2002-10-14 Sebastian Bergmann <sb@sebastian-bergmann.de>
24+
25+
* main/php_network.h: Revert to 1.34.
26+
27+
2002-10-14 Ilia Alshanetsky <ilia@prohost.org>
28+
29+
* ext/standard/formatted_print.c:
30+
Fixed a bug (introduced in previous patch) that caused non-double values to
31+
be converted to 0 by printf/sprint functions when %f format is specified.
32+
33+
2002-10-14 Zeev Suraski <zeev@zend.com>
34+
35+
* NEWS
36+
win32/registry.c:
37+
Change the 'security level' of registry entries to PHP_INI_SYSTEM. They're
38+
in the system hive in the registry, so only people with administrative
39+
priveleges can add stuff in there.
40+
41+
2002-10-14 Derick Rethans <d.rethans@jdimedia.nl>
42+
43+
* sapi/cli/php_cli.c: - Revert, got tricked by a stale object file
44+
45+
2002-10-14 Yasuo Ohgaki <yohgaki@ohgaki.net>
46+
47+
* run-tests.php: Fixed warnings
48+
49+
2002-10-14 Edin Kadribasic <edink@proventum.net>
50+
51+
* sapi/embed/config.m4: Install lib into $(prefix)/lib.
52+
Make $(prefix)/lib before trying to copy the lib into it.
53+
54+
2002-10-14 Derick Rethans <d.rethans@jdimedia.nl>
55+
56+
* run-tests.php:
57+
- Added the TEST_PHP_USER environment variable with which you can specify
58+
additional directories with tests to run. This is ideal for having your own
59+
test suite on your system. You can specify more directories by seperating them
60+
with a ",", for example:
61+
62+
TEST_PHP_USER=/dat/dev/xdebug/tests,/dat/dev/srm/tests make test
63+
64+
* sapi/cli/php_cli.c: - Fix CLI
65+
66+
2002-10-14 Sebastian Bergmann <sb@sebastian-bergmann.de>
67+
68+
* main/php_network.h: Whitespace fixes.
69+
70+
* main/php_network.h: Fix Win32 build.
71+
72+
2002-10-14 Wez Furlong <wez.php@thebrainroom.net>
73+
74+
* main/streams.c: *cough*
75+
Fix inverted logic for the assert.
76+
77+
2002-10-14 Jani Taskinen <sniper@iki.fi>
78+
79+
* ext/snmp/snmp.c: This is not zval..
80+
81+
2002-10-14 Wez Furlong <wez.php@thebrainroom.net>
82+
83+
* ext/standard/file.c
84+
main/streams.c:
85+
- fgets($fp) (with no length parameter) now uses a buffer as long as the
86+
the next line available from the $fp. Previously, there was a 1KB limit.
87+
88+
89+
* ext/standard/tests/file/userstreams.phpt:
90+
Add a sanity check and more verbose output in the case of an error.
91+
92+
* main/network.c: Implement better SSL error handling.
93+
94+
* main/user_streams.c:
95+
Fix stream_eof result interpretation (and thus the user-streams test).
96+
197
2002-10-13 Wez Furlong <wez.php@thebrainroom.net>
298

399
* main/streams.c: Remove some old code.

Zend/ChangeLog

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
2002-10-14 Ilia Alshanetsky <ilia@prohost.org>
2+
3+
* zend_ini_parser.y
4+
zend_ini_scanner.l
5+
zend_globals.h: MFZE1
6+
7+
2002-10-14 Andi Gutmans <andi@zend.com>
8+
9+
* zend_execute.c
10+
zend_language_parser.y: - Support new classname::$class_name, e.g.:
11+
<?
12+
13+
class foo::bar {
14+
public $hello = "Hello, World\n";
15+
}
16+
17+
$name = "bar";
18+
$obj = new foo::$name;
19+
print $obj->hello;
20+
?>
21+
122
2002-10-13 Ilia Alshanetsky <ilia@prohost.org>
223

324
* zend_extensions.h: Increased the API number. (re: floats patch)

0 commit comments

Comments
 (0)