[PHP-CVS] cvs: php-src /ext/tidy/examples cleanhtml.php cleanhtml5.php dumpit5.php urlgrab.php urlgrab5.php /ext/tidy/tests 007.phpt 008.phpt 009.phpt 010.phpt 011.phpt 012.phpt 013.phpt

2004-01-02 Thread John Coggeshall
johnSat Jan 3 00:23:25 2004 EDT Added files: /php-src/ext/tidy/examples cleanhtml5.php dumpit5.php urlgrab5.php /php-src/ext/tidy/tests 008.phpt 009.phpt 010.phpt 011.phpt 012.phpt 013.phpt Modified files:

Re: [PHP-CVS] cvs: php-src /sapi/cli php_cli.c

2004-01-02 Thread Jani Taskinen
MFH? --Jani On Fri, 2 Jan 2004, Edin Kadribasic wrote: >edink Fri Jan 2 17:31:33 2004 EDT > > Modified files: >/php-src/sapi/cli php_cli.c > Log: > Disable output buffering in CLI overriding php.ini setting. > Fixes #26755. > > >Index: php

Re: [PHP-CVS] cvs: php-src /ext/standard file.c

2004-01-02 Thread Ilia Alshanetsky
On January 02, 2004 08:28 pm, Moriyoshi Koizumi wrote: > I think this may cause a slight BC break, because they wouldn't > raise warnings if the length is 0. How about returning FALSE > silently in that case? fgets($fp, 0) is pretty pointless and should raise an error. If it does not raise an err

Re: [PHP-CVS] cvs: php-src /ext/standard file.c

2004-01-02 Thread Moriyoshi Koizumi
On 2004/01/02, at 9:57, Ilia Alshanetsky wrote: - if (len < 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter may not be negative"); + if (len <= 0) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater then 0."); RETURN_FALSE; } I thin

[PHP-CVS] cvs: php-src(PHP_4_3) /ext/standard file.c

2004-01-02 Thread Ilia Alshanetsky
iliaa Fri Jan 2 19:50:02 2004 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/standard file.c Log: MFH: s/then/than/ Index: php-src/ext/standard/file.c diff -u php-src/ext/standard/file.c:1.279.2.51 php-src/ext/standard/file.c:1.279.2.52 --- php-sr

[PHP-CVS] cvs: php-src /ext/standard file.c

2004-01-02 Thread Ilia Alshanetsky
iliaa Fri Jan 2 19:48:57 2004 EDT Modified files: /php-src/ext/standard file.c Log: s/then/than/ Thanks Jani & Andi Index: php-src/ext/standard/file.c diff -u php-src/ext/standard/file.c:1.372 php-src/ext/standard/file.c:1.373 --- php-src/ext/stan

[PHP-CVS] cvs: php-src /sapi/cli php_cli.c

2004-01-02 Thread Edin Kadribasic
edink Fri Jan 2 17:31:33 2004 EDT Modified files: /php-src/sapi/cli php_cli.c Log: Disable output buffering in CLI overriding php.ini setting. Fixes #26755. Index: php-src/sapi/cli/php_cli.c diff -u php-src/sapi/cli/php_cli.c:1.104 php-src/sapi/cli/php

[PHP-CVS] cvs: php-src /ext/oci8 oci8.c

2004-01-02 Thread Jani Taskinen
sniper Fri Jan 2 09:09:52 2004 EDT Modified files: /php-src/ext/oci8 oci8.c Log: another ZTS fix Index: php-src/ext/oci8/oci8.c diff -u php-src/ext/oci8/oci8.c:1.229 php-src/ext/oci8/oci8.c:1.230 --- php-src/ext/oci8/oci8.c:1.229 Thu Jan 1 21:21:44 20

Re: [PHP-CVS] cvs: php-src /ext/standard file.c

2004-01-02 Thread Andi Gutmans
"then" should be "than". At 12:57 AM 1/2/2004 +, Ilia Alshanetsky wrote: + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater then 0."); -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php