Re: [PHP-DEV] Where to send small enhancement patch for openssl module of PHP 5.2.6 ?

2008-11-09 Thread M.
Hi Pierre, If you have time to look at his bug, maybe you'll also have time to look at my one-line patch also related to OpenSSL ? http://bugs.php.net/bug.php?id=46127 I really don't know if I'm being ignored or what, but every time I write something for PHP, it gets nowhere (see: bug #46073

[PHP-DEV] sybase_connect()

2008-11-09 Thread Timm Friebe
Hi, I'd like to add a new optional parameter to sybase_connect() for PHP 5.3. If set to TRUE it will force creation of a new link (and works just like mysql_connect()'s new_link parameter). http://sitten-polizei.de/php/sybase-connect-newlink.diff Any objections? - Timm -- PHP Internals

Re: [PHP-DEV] sybase_connect()

2008-11-09 Thread Lukas Kahwe Smith
On 09.11.2008, at 13:05, Timm Friebe wrote: Hi, I'd like to add a new optional parameter to sybase_connect() for PHP 5.3. If set to TRUE it will force creation of a new link (and works just like mysql_connect()'s new_link parameter).

Re: [PHP-DEV] Where to send small enhancement patch for openssl module of PHP 5.2.6 ?

2008-11-09 Thread Pierre Joye
hi, On Sun, Nov 9, 2008 at 9:39 AM, M. Karpelès [EMAIL PROTECTED] wrote: Hi Pierre, If you have time to look at his bug, maybe you'll also have time to look at my one-line patch also related to OpenSSL ? http://bugs.php.net/bug.php?id=46127 I really don't know if I'm being ignored or

[PHP-DEV] karma request

2008-11-09 Thread Gregory Beaver
Hi, I'd like to request karma for ZE in order to do minor bugfixes and refactoring. I have no intention to commit any feature changes or major commits, and am perfectly happy writing patches for these to be reviewed by the big guns. Thanks, Greg -- PHP Internals - PHP Runtime Development

[PHP-DEV] alpha3 or forever hold your peace

2008-11-09 Thread Lukas Kahwe Smith
Hi, I just wanted to ask everybody to skim over the changes for PHP 5.3 we have in CVS (especially bigger stuff like the addition/removal of an extension etc.). Please bring up any areas you are concerned about that we might have forgotten. However I am not interested in people bringing

Re: [PHP-DEV] Bug in namespaces and type hints

2008-11-09 Thread Stanislav Malyshev
Hi! recent change in namespace code introduced new bug, please consider: Current code needs some change and cleanup, which will be done shortly. -- Stanislav Malyshev, Zend Software Architect [EMAIL PROTECTED] http://www.zend.com/ (408)253-8829 MSN: [EMAIL PROTECTED] -- PHP Internals -

Re: [PHP-DEV] Where to send small enhancement patch for openssl module of PHP 5.2.6 ?

2008-11-09 Thread Jani Taskinen
Pierre Joye kirjoitti: hi, On Sun, Nov 9, 2008 at 9:39 AM, M. Karpelès [EMAIL PROTECTED] wrote: Hi Pierre, If you have time to look at his bug, maybe you'll also have time to look at my one-line patch also related to OpenSSL ? http://bugs.php.net/bug.php?id=46127 I really don't know if I'm

[PHP-DEV] Bug in namespaces and type hints

2008-11-09 Thread Marcin Kurzyna
Hi, recent change in namespace code introduced new bug, please consider: ?php namespace tests; class t1 { function abc(\stdClass $std = null) { } } ? triggers Fatal error: Default value for parameters with a class type hint can only be NULL where the same w/o namespace

[PHP-DEV] where to request small enhancements?

2008-11-09 Thread James Murray
I'm not a C++ or C programmer, however I have made an extension that exposes a complimentary function to error_get_last, error_clear_last. It's a super useful function, specially if you're trying to detect things like white pages It's a much needed function for people that write their own

Re: [PHP-DEV] [PATCH] Allow unsetting headers previously set usingheader()

2008-11-09 Thread Christian Schmidt
Stan Vassilev | FM wrote: I suggest header_remove('*') or simply header_remove() /no param/ removes all headers (including the one PHP sets by default), so we can start with a clear state. I added header_remove('Foo'). header_remove() without arguments removes all headers (though Apache

RE: [PHP-DEV] [PATCH] Allow unsetting headers previously set usingheader()

2008-11-09 Thread Uwe Schindler
+1 I have no problem with implementing this for NSAPI after the patch is committed to CVS, just keep me informed about this. - Uwe Schindler [EMAIL PROTECTED] - http://www.php.net NSAPI SAPI developer Bremen, Germany -Original Message- From: Arnaud LB [mailto:[EMAIL PROTECTED] On

Re: [PHP-DEV] [PATCH] Allow unsetting headers previously set usingheader()

2008-11-09 Thread Arnaud Le Blanc
On Sunday 09 November 2008 19:51:31 Christian Schmidt wrote: Stan Vassilev | FM wrote: I suggest header_remove('*') or simply header_remove() /no param/ removes all headers (including the one PHP sets by default), so we can start with a clear state. I added header_remove('Foo').