|
| 1 | +2002-09-26 Colin Viebrock <colin@easydns.com> |
| 2 | + |
| 3 | + * NEWS: document changes |
| 4 | + |
| 5 | +2002-09-26 Derick Rethans <d.rethans@jdimedia.nl> |
| 6 | + |
| 7 | + * win32/install.txt: |
| 8 | + - Added Sambar install notes (patch by Steffen <com@sambarserver.info>) |
| 9 | + |
| 10 | +2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> |
| 11 | + |
| 12 | + * ext/standard/credits.c |
| 13 | + ext/standard/info.c |
| 14 | + ext/standard/info.h: Fix ZTS build. |
| 15 | + |
| 16 | +2002-09-26 Colin Viebrock <colin@easydns.com> |
| 17 | + |
| 18 | + * ext/standard/info.h |
| 19 | + ext/standard/credits.c |
| 20 | + ext/standard/info.c: |
| 21 | + update credits page with proper HTML, fix HTML escaping, and a few tweaks |
| 22 | + |
| 23 | +2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> |
| 24 | + |
| 25 | + * ext/standard/string.c: Fix warning. |
| 26 | + |
| 27 | + * ext/standard/html.c |
| 28 | + ext/standard/html.h |
| 29 | + ext/wddx/php_wddx_api.h |
| 30 | + ext/wddx/wddx.c: Fix ZTS build. |
| 31 | + |
| 32 | +2002-09-26 Ilia Alshanetsky <ilia@prohost.org> |
| 33 | + |
| 34 | + * ext/session/session.c: Fixed bug #11643 |
| 35 | + |
| 36 | +2002-09-26 Colin Viebrock <colin@easydns.com> |
| 37 | + |
| 38 | + * sapi/apache/php_apache.c |
| 39 | + ext/standard/css.c |
| 40 | + ext/standard/info.c |
| 41 | + main/php_ini.c |
| 42 | + sapi/aolserver/aolserver.c: fix phpinfo() output for better browser BC |
| 43 | + |
| 44 | +2002-09-26 Jani Taskinen <sniper@iki.fi> |
| 45 | + |
| 46 | + * ext/session/session.c: |
| 47 | + Fix bug: #14991 (changing session.use_trans_sid does not work in scripts) |
| 48 | + |
| 49 | +2002-09-26 Wez Furlong <wez.php@thebrainroom.net> |
| 50 | + |
| 51 | + * main/streams.c: |
| 52 | + Fix for #19580. (Incorrectly warning about lost data when that is not the |
| 53 | + case on systems without fopencookie). |
| 54 | + |
| 55 | + * ext/standard/html.c: |
| 56 | + Emit a warning when an unsupported charset is requested in htmlentities. |
| 57 | + Fixed #18521. |
| 58 | + |
| 59 | +2002-09-26 Jani Taskinen <sniper@iki.fi> |
| 60 | + |
| 61 | + * NEWS: style,consistency.. |
| 62 | + |
| 63 | +2002-09-26 Derick Rethans <d.rethans@jdimedia.nl> |
| 64 | + |
| 65 | + * NEWS: - Cleaning up |
| 66 | + |
| 67 | +2002-09-26 Tal Peer <tal@twisthost.com> |
| 68 | + |
| 69 | + * ext/fribidi/fribidi.c: - Fixed fatal error |
| 70 | + |
| 71 | +2002-09-26 Wez Furlong <wez.php@thebrainroom.net> |
| 72 | + |
| 73 | + * ext/standard/file.h |
| 74 | + main/streams.c |
| 75 | + main/user_streams.c |
| 76 | + ext/standard/file.c: |
| 77 | + Fix segfault in wrapper error log mechanism when errors are logged on |
| 78 | + second and subsequent events. |
| 79 | + Implement very simple recursion protection for user streams written |
| 80 | + like this: |
| 81 | + class urlEncodeStream { |
| 82 | + var $fp = NULL; |
| 83 | + |
| 84 | + function stream_open($path, $mode, $options, &$opened_path) |
| 85 | + { |
| 86 | + $this->fp = fopen($path, $mode); // <-- this recurses infinitely |
| 87 | + return is_resource($this->fp); |
| 88 | + } |
| 89 | + } |
| 90 | + |
| 91 | + file_register_wrapper('urlencode', 'urlEncodeStream'); |
| 92 | + $fp = fopen('urlencode:///tmp/outputfile.txt', 'w'); |
| 93 | + |
| 94 | + Noticed by: Yasuo. |
| 95 | + |
| 96 | +2002-09-26 Jan Lehnardt <jan@dasmoped.net> |
| 97 | + |
| 98 | + * ext/standard/dir.c: |
| 99 | + - GLOB_NOMATCH and GLOB_NOESCAPE are only defined in win32/glob.h |
| 100 | + - fixes build on FreeBSD 4.6 |
| 101 | + |
| 102 | +2002-09-26 Tal Peer <tal@twisthost.com> |
| 103 | + |
| 104 | + * ext/fribidi/README |
| 105 | + ext/fribidi/fribidi.c: |
| 106 | + - Reverted back to old param parsing api (and eliminated a segfault by doing that) |
| 107 | + - Added the CapRTL charset -- should be used for testing on machines without Hebrew/Arabic/Persian |
| 108 | + fonts |
| 109 | + - Changed the note about deprecated behaviour from E_WARNING to E_NOTICE |
| 110 | + |
| 111 | +2002-09-26 Wez Furlong <wez.php@thebrainroom.net> |
| 112 | + |
| 113 | + * ext/standard/http_fopen_wrapper.c |
| 114 | + ext/standard/file.c |
| 115 | + ext/standard/file.h: |
| 116 | + Remove an unused variable and a now-unused function. |
| 117 | + |
| 118 | + * ext/bz2/bz2.c |
| 119 | + ext/standard/file.h |
| 120 | + ext/standard/ftp_fopen_wrapper.c |
| 121 | + ext/standard/http_fopen_wrapper.c |
| 122 | + ext/standard/php_fopen_wrapper.c |
| 123 | + ext/zlib/zlib_fopen_wrapper.c |
| 124 | + main/php_streams.h |
| 125 | + ext/standard/basic_functions.c |
| 126 | + ext/standard/file.c: Rename file_get_wrapper_data -> file_get_meta_data. |
| 127 | + It now always returns useful information for all streams. |
| 128 | + Unified that data with socket_get_status and made socket_get_status |
| 129 | + an alias for file_get_meta_data. |
| 130 | + |
| 131 | + Fix Location header following which was broken in this commit: |
| 132 | + http://cvs.php.net/diff.php/php4/ext/standard/http_fopen_wrapper.c?r1=1.41&r2=1.42&ty=h |
| 133 | + |
| 134 | +2002-09-26 Yasuo Ohgaki <yohgaki@ohgaki.net> |
| 135 | + |
| 136 | + * ext/standard/dir.c: Remove dup |
| 137 | + |
| 138 | +2002-09-26 Hartmut Holzgraefe <hartmut@six.de> |
| 139 | + |
| 140 | + * EXTENSIONS: temporarily giving some orphands a new home |
| 141 | + |
| 142 | +2002-09-26 Georg Richter <georg.richter@phpev.de> |
| 143 | + |
| 144 | + * EXTENSIONS: maintainers for the famous mysql extension |
| 145 | + |
| 146 | +2002-09-26 Markus Fischer <mfischer@guru.josefine.at> |
| 147 | + |
| 148 | + * NEWS: - Add missing bug fixes. |
| 149 | + |
| 150 | + |
| 151 | +2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> |
| 152 | + |
| 153 | + * ext/standard/dir.c: Fix ZTS build. Fix warning. |
| 154 | + |
| 155 | +2002-09-26 Hartmut Holzgraefe <hartmut@six.de> |
| 156 | + |
| 157 | + * ext/standard/dir.c: fix windows build |
| 158 | + |
| 159 | +2002-09-26 Markus Fischer <mfischer@guru.josefine.at> |
| 160 | + |
| 161 | + * php.ini-recommended: - Merge url_rewriter.tags description from Sascha. |
| 162 | + |
| 163 | +2002-09-26 Sebastian Bergmann <sb@sebastian-bergmann.de> |
| 164 | + |
| 165 | + * ext/mbstring/mbstring.dsp |
| 166 | + win32/php4dll.dsp |
| 167 | + win32/php4dllts.dsp: Sync MSVC project files. |
| 168 | + |
| 169 | +2002-09-26 Tal Peer <tal@twisthost.com> |
| 170 | + |
| 171 | + * ext/fribidi/EXPERIMENTAL: - Initial commit |
| 172 | + |
| 173 | +2002-09-26 Wez Furlong <wez.php@thebrainroom.net> |
| 174 | + |
| 175 | + * NEWS: Note that the GD functions now also work with remote files. |
| 176 | + |
| 177 | + * ext/mbstring/config.m4 |
| 178 | + ext/mbstring/mbstring.c |
| 179 | + ext/mbstring/mbstring.h |
| 180 | + ext/mbstring/php_unicode.c |
| 181 | + ext/mbstring/php_unicode.h |
| 182 | + ext/mbstring/unicode_data.h: |
| 183 | + (PHP mb_convert_case) Add function that will convert the case of a string |
| 184 | + Respecting it's encoding (or the internal encoding). |
| 185 | + |
| 186 | +2002-09-26 Hartmut Holzgraefe <hartmut@six.de> |
| 187 | + |
| 188 | + * ext/standard/dir.c: |
| 189 | + glob should now be ZTS/open_basedir/safe_mode aware (finally) |
| 190 | + |
| 191 | + * ext/standard/file.c: symbolic constants for fnmatch flags added |
| 192 | + |
1 | 193 | 2002-09-25 Yasuo Ohgaki <yohgaki@ohgaki.net>
|
2 | 194 |
|
3 | 195 | * php.ini-dist: on -> On
|
|
0 commit comments