summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2002-10-15 00:34:34 +0000
committer <changelog@php.net>2002-10-15 00:34:34 +0000
commitf0664706c9edbe34817ba7da83e18f6f54ddd399 (patch)
treea2e5b3ac8932179ff3c5c9d3f0c17b122db90c6f
parentfac8eaff1a07823fd0fa2e54ef7796d7a9e40307 (diff)
downloadphp-git-f0664706c9edbe34817ba7da83e18f6f54ddd399.tar.gz
ChangeLog update
-rw-r--r--ChangeLog96
-rw-r--r--Zend/ChangeLog21
2 files changed, 117 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bcc65aee54..1705b862c0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,99 @@
+2002-10-14 Jani Taskinen <sniper@iki.fi>
+
+ * ext/iconv/tests/translit-failure.phpt:
+ This test should not print out the error (which is correct).
+
+2002-10-14 Edin Kadribasic <edink@proventum.net>
+
+ * sapi/embed/config.m4:
+ Respect INSTALL_ROOT var. Thanks to Jani for catching this one.
+
+2002-10-14 Tal Peer <tal@kaktos.co.il>
+
+ * pear/PEAR/Installer.php:
+ * Fixed a nasty bug preventing installation of pecl exts.
+
+2002-10-14 Ilia Alshanetsky <ilia@prohost.org>
+
+ * ext/standard/browscap.c: Fixed bug #19649.
+
+ * ext/standard/tests/general_functions/001.phpt:
+ Added float printing tests.
+
+2002-10-14 Sebastian Bergmann <sb@sebastian-bergmann.de>
+
+ * main/php_network.h: Revert to 1.34.
+
+2002-10-14 Ilia Alshanetsky <ilia@prohost.org>
+
+ * ext/standard/formatted_print.c:
+ Fixed a bug (introduced in previous patch) that caused non-double values to
+ be converted to 0 by printf/sprint functions when %f format is specified.
+
+2002-10-14 Zeev Suraski <zeev@zend.com>
+
+ * NEWS
+ win32/registry.c:
+ Change the 'security level' of registry entries to PHP_INI_SYSTEM. They're
+ in the system hive in the registry, so only people with administrative
+ priveleges can add stuff in there.
+
+2002-10-14 Derick Rethans <d.rethans@jdimedia.nl>
+
+ * sapi/cli/php_cli.c: - Revert, got tricked by a stale object file
+
+2002-10-14 Yasuo Ohgaki <yohgaki@ohgaki.net>
+
+ * run-tests.php: Fixed warnings
+
+2002-10-14 Edin Kadribasic <edink@proventum.net>
+
+ * sapi/embed/config.m4: Install lib into $(prefix)/lib.
+ Make $(prefix)/lib before trying to copy the lib into it.
+
+2002-10-14 Derick Rethans <d.rethans@jdimedia.nl>
+
+ * run-tests.php:
+ - Added the TEST_PHP_USER environment variable with which you can specify
+ additional directories with tests to run. This is ideal for having your own
+ test suite on your system. You can specify more directories by seperating them
+ with a ",", for example:
+
+ TEST_PHP_USER=/dat/dev/xdebug/tests,/dat/dev/srm/tests make test
+
+ * sapi/cli/php_cli.c: - Fix CLI
+
+2002-10-14 Sebastian Bergmann <sb@sebastian-bergmann.de>
+
+ * main/php_network.h: Whitespace fixes.
+
+ * main/php_network.h: Fix Win32 build.
+
+2002-10-14 Wez Furlong <wez.php@thebrainroom.net>
+
+ * main/streams.c: *cough*
+ Fix inverted logic for the assert.
+
+2002-10-14 Jani Taskinen <sniper@iki.fi>
+
+ * ext/snmp/snmp.c: This is not zval..
+
+2002-10-14 Wez Furlong <wez.php@thebrainroom.net>
+
+ * ext/standard/file.c
+ main/streams.c:
+ - fgets($fp) (with no length parameter) now uses a buffer as long as the
+ the next line available from the $fp. Previously, there was a 1KB limit.
+
+
+ * ext/standard/tests/file/userstreams.phpt:
+ Add a sanity check and more verbose output in the case of an error.
+
+ * main/network.c: Implement better SSL error handling.
+
+ * main/user_streams.c:
+ Fix stream_eof result interpretation (and thus the user-streams test).
+
2002-10-13 Wez Furlong <wez.php@thebrainroom.net>
* main/streams.c: Remove some old code.
diff --git a/Zend/ChangeLog b/Zend/ChangeLog
index 4641cacc46..845ee23571 100644
--- a/Zend/ChangeLog
+++ b/Zend/ChangeLog
@@ -1,3 +1,24 @@
+2002-10-14 Ilia Alshanetsky <ilia@prohost.org>
+
+ * zend_ini_parser.y
+ zend_ini_scanner.l
+ zend_globals.h: MFZE1
+
+2002-10-14 Andi Gutmans <andi@zend.com>
+
+ * zend_execute.c
+ zend_language_parser.y: - Support new classname::$class_name, e.g.:
+ <?
+
+ class foo::bar {
+ public $hello = "Hello, World\n";
+ }
+
+ $name = "bar";
+ $obj = new foo::$name;
+ print $obj->hello;
+ ?>
+
2002-10-13 Ilia Alshanetsky <ilia@prohost.org>
* zend_extensions.h: Increased the API number. (re: floats patch)