]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Mon, 13 Jan 2003 01:34:00 +0000 (01:34 +0000)
committer <changelog@php.net> <>
Mon, 13 Jan 2003 01:34:00 +0000 (01:34 +0000)
ChangeLog
Zend/ChangeLog

index e60a5de8c4f41708150a744e6d66d538f4e55eec..fef82da69d7d9e0902c1816a5becf96446416920 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,100 @@
+2003-01-12  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>
+
+    * tests/lang/bug21600.phpt:
+      
+      Added test case for bug #21600
+
+    * ext/standard/filters.c:
+      Fixed a bug of the base64 decoder that a sequence of intervening
+      characters that are supposed to be ignored by the decoder cause output
+      corruption.
+
+2003-01-12  Stanislav Malyshev  <stas@zend.com>
+
+    * ext/standard/aggregation.c:
+      ZE2 compatibility
+
+2003-01-12  Sebastian Bergmann  <sb@sebastian-bergmann.de>
+
+    * ext/standard/basic_functions.c
+      ext/standard/info.c:
+      ZTS fixes.
+
+2003-01-12  Stanislav Malyshev  <stas@zend.com>
+
+    * ext/standard/aggregation.c:
+      Disable ZE2-incompatible parts
+
+    * ext/standard/var.c:
+      remove unneeded var
+
+2003-01-12  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>
+
+    * ext/standard/filters.c:
+      Fixed infinite loop bug when an invalid quoted-printable escape sequence
+      appears in the streem.
+
+    * ext/standard/filters.c:
+      Fixed error msg format so it correctly reports the actual filter name
+
+2003-01-12  Sascha Schumann  <sascha@schumann.cx>
+
+    * php.ini-recommended:
+      recommending SHA-1 as hash function
+
+    * php.ini-dist:
+      sync entries
+
+    * php.ini-dist
+      php.ini-recommended
+      ext/session/php_session.h
+      ext/session/session.c:
+      add INI setting session.hash_function
+      add support for creating session ids using SHA-1
+      source more entropy for session ids
+
+    * ext/session/mod_files.c:
+      handle ERANGE from strtol properly
+
+2003-01-12  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>
+
+    * ext/standard/filters.c:
+      . Updated quoted-printable filter by a neater implementation.
+      . Changed emalloc family functions to pemalloc ones for persistent
+      filters.
+      . Changed base64 and quoted-printable filter names to
+      "convert.base64-encode",
+        "convert.base64-decode", "convert.quoted-printable-encode", and
+        "convert.quoted-printable-decode" respectively for the consistency that
+        may be requested later.
+
+2003-01-12  Derick Rethans  <d.rethans@jdimedia.nl>
+
+    * NEWS:
+      - Update NEWS to show 5.0.0
+
+2003-01-12  Jan Lehnardt  <jan@dasmoped.net>
+
+    * run-tests.php:
+       - fix typo
+
+2003-01-12  Sebastian Bergmann  <sb@sebastian-bergmann.de>
+
+    * ext/rpc/java/config.m4
+      sapi/servlet/Makefile.frag
+      sapi/servlet/config.m4
+      sapi/servlet/servlet.c
+      sapi/servlet/servlet.c
+      sapi/servlet/servlet.java:
+      Patch by Giuseppe Tanzilli <g.tanzilli@gruppocsf.com>.
+
+2003-01-12  Frank M. Kromann  <frank@kromann.info>
+
+    * ext/mssql/php_mssql.c:
+      Release skiped results. This will free memory on the server.
+      Make mssql_execute work for stored procedures with and without returning
+      result sets
+
 2003-01-11  Ilia Alshanetsky  <ilia@prohost.org>
 
     * ext/sybase_ct/php_sybase_ct.c:
index 605f844e9be72fb674a02c2413f6431b724708ab..25cc7fada577fc79a622d73f72fa05ca9c99c754 100644 (file)
@@ -1,3 +1,83 @@
+2003-01-12  Harald Radi  <harald.radi+coding.php@nme.at>
+
+    * zend_modules.h:
+      fix wrong dereferenciation
+
+2003-01-12  Stanislav Malyshev  <stas@zend.com>
+
+    * zend_compile.c:
+      fix inheritance
+
+    * zend_API.h:
+      Remove handle_property from here too
+
+    * zend.c
+      zend.h
+      zend_compile.c:
+      RIP handle_* functions. ZE2 will use __ handlers instead.
+
+    * zend_object_handlers.c:
+      Move Z_OBJ_P here.
+
+    * zend_operators.h:
+      Remove Z_OBJ - it's internal to Zend objects, no generic function except
+      those in zend_object_handlers.c should use it.
+      Add Z_OBJ_HANDLER macro for easy access to handlers
+
+2003-01-12  Sebastian Bergmann  <sb@sebastian-bergmann.de>
+
+    * zend.c
+      zend.h
+      zend_builtin_functions.c:
+      ZTS fixes.
+
+2003-01-12  Stanislav Malyshev  <stas@zend.com>
+
+    * zend_object_handlers.c:
+      add get_class_name handler
+
+    * zend.c:
+      Use generic handlers instead of Z_OBJ
+
+2003-01-12  Harald Radi  <harald.radi+coding.php@nme.at>
+
+    * zend_modules.h:
+      
+
+    * zend_ini.h
+      zend_ini_entry.h
+      zend_modules.h:
+      partially revert previous commit and
+      change zend_modules.h to include
+      a forward declaration to zend_ini_entry
+
+    * zend_ini.h
+      zend_ini_entry.h
+      zend_modules.h:
+      added zend_ini_entry to zend_modules_entry as
+      discussed with zeev
+
+    * zend_builtin_functions.c:
+      fix 'use of uninitialized variable' warning
+
+2003-01-12  Stanislav Malyshev  <stas@zend.com>
+
+    * zend_objects_API.c:
+      validate handle
+
+2003-01-12  Zeev Suraski  <zeev@zend.com>
+
+    * zend.c
+      zend_compile.c
+      zend_execute.c
+      zend_execute_API.c
+      zend_globals.h
+      zend_ini.c
+      zend_ini.h
+      zend_variables.c:
+      Implemented compatibility mode
+      To enable - zend2.implicit_clone = on in php.ini or using ini_set()
+
 2003-01-11  Andi Gutmans  <andi@zend.com>
 
     * zend_execute.c: