Re: [PHP-CVS] svn: /php/php-src/branches/PHP_5_2/ext/iconv/tests/ iconv_stream_filter_delimiter.phpt

2009-07-28 Thread Moriyoshi Koizumi
Huh? I guess this was added to 5.2 as well, and I don't think it got reverted at some point. Moriyoshi On Tue, Jul 28, 2009 at 8:08 AM, Rasmus Lerdorfras...@php.net wrote: rasmus                                   Mon, 27 Jul 2009 23:08:23 + Revision:

Re: [PHP-CVS] svn: /php/php-src/branches/PHP_5_2/ext/iconv/tests/ iconv_stream_filter_delimiter.phpt

2009-07-28 Thread Rasmus Lerdorf
I don't see the code in 5.2. Look at the php_iconv_stream_filter_factory_create() function in iconv.c On line 2787 in 5.2 it says: if ((to_charset = strchr(from_charset, '/')) == NULL) { In the same function in 5.3 it says: if ((to_charset = strpbrk(from_charset, /.)) == NULL) {

Re: [PHP-CVS] svn: /php/php-src/branches/PHP_5_2/ext/iconv/tests/ iconv_stream_filter_delimiter.phpt

2009-07-28 Thread Moriyoshi Koizumi
Hmm.. it should have been there. I'm gonna fix it then. Sorry for bothering you. Moriyoshi On Tue, Jul 28, 2009 at 5:40 PM, Rasmus Lerdorfras...@lerdorf.com wrote: I don't see the code in 5.2. Look at the php_iconv_stream_filter_factory_create() function in iconv.c On line 2787 in 5.2 it