From: Date: Wed, 15 Jan 2003 01:34:55 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: PHP_5_0_dev_before_13561_fix~227 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a34d4dc30e09bb2350e4d648166f4e311602b6c2;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 78267e6ad0..f2324a6e45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,110 @@ +2003-01-14 Ilia Alshanetsky + + * ext/rpc/xmlrpc/xmlrpc-epi-php.c: + Porting of patch applied to ext/xmlrpc. + + * ext/xmlrpc/xmlrpc-epi-php.c: + Made the code use php_error_docref(). + Removed pointless checks around array_init() and emalloc(). + Switched to zend_get_parameters_ex() argument parsing API. + + * ext/domxml/php_domxml.c: + Changed getParameters() to zend_get_parameters_ex(). + + * ext/hyperwave/hw.c: + Fixed compile warnings. + + * ext/cpdf/cpdf.c: + One more typo. + + * ext/cpdf/cpdf.c: + Fixed typos. + +2003-01-14 Moriyoshi Koizumi + + * ext/iconv/iconv.c: + Appended my name to the list of authors + + * ext/iconv/tests/iconv_mime_decode.phpt: + Test update for new feature + +2003-01-14 Ilia Alshanetsky + + * ext/cpdf/cpdf.c: + Switched from old getParse* argument parsing API to a more recent + zend_get_parameters*. + +2003-01-14 Andrey Hristov + + * ext/standard/basic_functions.c + ext/standard/php_var.h + ext/standard/var.c: + added function get_memory_usage(). available only when PHP is compiled + with --enable-memory-limit + +2003-01-14 Ilia Alshanetsky + + * ext/hyperwave/hg_comm.c: + Fixed compile warning & removed useless variable. + + * ext/hyperwave/hw.c: + Changed php_error to php_error_docref. + Got rid off the ancient getParameters* parameter parsing API. + +2003-01-14 Moriyoshi Koizumi + + * ext/standard/filters.c: + Added a new option "force-encode-first" to the quoted-printable encoder + as per Wez's request. If enabled, the encoder forcefully does qp + tranformation on every first character of lines in incoming stream. + +2003-01-14 Ilia Alshanetsky + + * ext/cpdf/cpdf.c: + Changed php_error() to php_error_docref(). + Made pdfdoc retrieval a macro. + +2003-01-14 Moriyoshi Koizumi + + * ext/standard/quot_print.c: + Made php_quot_print_decode() RFC2045-compliant + +2003-01-14 Edin Kadribasic + + * (PHP_4_3) + NEWS: + Bugfixing news + + * ext/gettext/gettext.dsp: + MFB: bind_textdomain_codeset() availability on windows + + * (PHP_4_3) + ext/gettext/gettext.dsp: + Made bind_textdomain_codeset() available on windows (fixes #21525). + +2003-01-14 Derick Rethans + + * win32/install.txt: + s/gd/gd2 + +2003-01-14 Ilia Alshanetsky + + * ext/sockets/sockets.c: + Changed php_error to php_error_docref(). + Removed pointless checks around array_init(). + +2003-01-14 Moriyoshi Koizumi + + * ext/standard/filters.c: + Fixed small memory leak that occurs when the invalid line length is passed + to the qprint ctor. + + * ext/standard/filters.c: + Fixed quoted-printable encoder so that it produces RFC2045 complicant + output. As per this specification requirement, the constructor now accepts + three options: binary (boolean), line-len (uint), line-break-chars + (string). + 2003-01-13 Jani Taskinen * ext/informix/config.m4 diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 05c17f9a28..b5f2058ba8 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,45 @@ +2003-01-14 Andi Gutmans + + * ZEND_CHANGES + zend_compile.c + zend_compile.h + zend_execute.c + zend_language_parser.y + zend_language_scanner.l + zend_operators.c + zend_operators.h: + - Change "is" to "instanceof" as it explains better what the operator + means. + - "is_a" was also appropriate but ugly. + +2003-01-14 Stanislav Malyshev + + * zend_API.c: + fix memory leaks and key size + +2003-01-14 Ilia Alshanetsky + + * zend_ini_parser.y: + MFZE2 + +2003-01-14 Stanislav Malyshev + + * zend_compile.c: + fix warning + + * zend_API.c + zend_API.h: + Make add_property_ functions work via write_property handler + + * zend.c + zend_object_handlers.c: + ws + +2003-01-14 Ilia Alshanetsky + + * zend_ini_parser.y: + Reverting previous patch. + 2003-01-13 Ilia Alshanetsky * zend_ini_parser.y: