From: Date: Tue, 8 Oct 2002 00:35:21 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-4.3.0pre1~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26348e5392e62368c1ab115b4a75e0887b4abffa;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 632fe7759a..5e8a0ee8c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,181 @@ +2002-10-07 Rasmus Lerdorf + + * ext/zlib/config0.m4: + Make zlib-dir actually mean something during the check + +2002-10-07 Dan Kalowsky + + * ext/standard/quot_print.c: + Fix for bug #19798 (submitted by mclap@simpage.mv.ru) + +2002-10-07 Melvyn Sopacua + + * NEWS: Add xslt milestones + +2002-10-07 Rasmus Lerdorf + + * ext/zlib/config0.m4: + Argh! Revert. I'm on drugs. Was linking in a newer libz when I checked + this. + +2002-10-07 Ilia Alshanetsky + + * ext/standard/tests/strings/strpos.phpt + ext/standard/tests/strings/strstr.phpt + ext/standard/tests/strings/substr_count.phpt: + Added tests for strstr(), strpos() and substr_count() functions. + +2002-10-07 Rasmus Lerdorf + + * ext/zlib/config0.m4: + Oops, should still define that. Didn't think I needed it as nothing in + ext/zlib checks it, but it is checked elsewhere. + + * ext/zlib/config0.m4: + This restriction is no longer true after the streams changes. + +2002-10-07 Moriyoshi Koizumi + + * ext/mbstring/php_mbregex.c: Fixed typo. + +2002-10-07 Markus Fischer + + * NEWS: - Update + +2002-10-07 Tal Peer + + * ext/fribidi/tests/001.phpt: + Initial commit of fribidi_log2vis test + +2002-10-07 Moriyoshi Koizumi + + * ext/mbstring/tests/022.inc + ext/mbstring/tests/022.phpt + ext/mbstring/tests/023.inc + ext/mbstring/tests/023.phpt + ext/mbstring/tests/024.inc + ext/mbstring/tests/024.phpt + ext/mbstring/tests/021.inc + ext/mbstring/tests/021.phpt: Added test cases for mbregex + + * ext/mbstring/php_mbregex.h + ext/mbstring/mbstring.c + ext/mbstring/mbstring.h + ext/mbstring/php_mbregex.c: + Lots of clean-up for upcoming mbstring merging event. + Added mb_regex_set_options(). + The Options parameters of various mbregex functions are now deprecated. + +2002-10-07 Colin Viebrock + + * php.ini-dist: Document session.save_path option in php.ini + +2002-10-07 Andrei Zmievski + + * ext/pcre/php_pcre.c: + Use a copy of locale instead of the original. Fixes bug #19482. + +2002-10-07 Derick Rethans + + * NEWS: 2. :) + +2002-10-07 Rasmus Lerdorf + + * NEWS: . + +2002-10-07 David Viner + + * ext/xslt/tests/008.phpt + ext/xslt/tests/xslt_set_object.xsl: adding test of xslt_set_object + --dviner + +2002-10-07 Moriyoshi Koizumi + + * ext/mbstring/php_mbregex.c: fixed mb_split() + + * ext/mbstring/php_mbregex.c: + fixed mb_split (the value of third parameter treated wrongly) + +2002-10-07 Rasmus Lerdorf + + * ext/standard/dir.c: + readdir() was returning NULL instead of FALSE when used on an invalid + directory handle. If someone forgot to check (as someone here did) that + the opendir() succeeded, and then followed the documented usage by checking + readdir()!==FALSE things would go awry. The ZEND_FETCH_RESOURCE macro + explicitly does a RETURN_NULL on failure which is not what we want in this + case, so work around it. No need to change it for the OO case since the + object is not created if the opendir fails. + +2002-10-07 Moriyoshi Koizumi + + * ext/mbstring/php_mbregex.c: MFH + +2002-10-07 Stefan Esser + + * ext/mbstring/mbfilter.c: never smash the stack... + + * ext/mbstring/mbfilter.c: fixing possible off by one in error case + +2002-10-07 Sander Roobol + + * run-tests.php: + Temporary (?) workaround (?) for is_executable() on Windows. + +2002-10-07 Stefan Esser + + * main/rfc1867.c: MFH: closing protected variables hole + + * main/rfc1867.c: Closing protected variables hole + +2002-10-07 Zeev Suraski + + * main/output.c: Whitespace + +2002-10-07 Jani Taskinen + + * ext/fbsql/config.m4: Fix obvious error.. + +2002-10-07 Jan Lehnardt + + * ext/fbsql/config.m4: - fix typo and improve error message + +2002-10-07 Sascha Schumann + + * ext/session/tests/021.phpt: + Call ob_flush to force the buffer contents to go through the rewriter. + +2002-10-07 Marc Boeren + + * ext/dbx/tests/003.phpt + ext/dbx/tests/004.phpt + ext/dbx/tests/005.phpt + ext/dbx/tests/006.phpt + ext/dbx/tests/007.phpt + ext/dbx/tests/008.phpt + ext/dbx/tests/dbx_test.p: + Tests will be skipped if a tester does not explicitly specify the + test-database setup in dbx_test.p. + +2002-10-07 Sascha Schumann + + * main/streams.c: + stdio buffers data in user land. By calling fflush(3), this + data is sent to the kernel using write(2). fsync'ing a + file descriptor is not required -- writing to a fd has the same + affect as calling fflush after each fwrite. + + * ext/session/session.c: + Print out warning only, if a variable was actually migrated + +2002-10-07 Melvyn Sopacua + + * ext/xslt/tests/009.phpt: MFH + + * run-tests.php: + Add --EXPECTF-- section: 'sprintf' for EXPECT sections. See for usage + example ext/xslt/tests/009.phpt. + 2002-10-06 Melvyn Sopacua * ext/xslt/tests/009.phpt: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 39e3f00799..c2e0073fbd 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,18 @@ +2002-10-07 Andi Gutmans + + * tests/zend2.php: - Fix test + + * zend_execute.c: + - Require $this-> when calling a methods. This whole automatic lookup + - first in the class and then in the global scope is confusing, slow and + - not quite BC compatible. + + * zend.c + zend_compile.c + zend_globals.h: + - Allow access to private/protected variables of $clone inside the __clone() + - method + 2002-10-06 Andi Gutmans * zend_execute.c: - Fix problem with unsetting object members.