Re: [PHP-DEV] [Patch] tidy node and getParent

2005-12-14 Thread Markus Fischer
Hi, any chance for http://bugs.php.net/bug.php?id=34023 this time? thanks, - Markus Markus Fischer wrote: Hi, can this be taken into consideration for HEAD now that RC1 is out of the door? thanks, - Markus Andi Gutmans wrote: We're in a feature freeze so please hold it to after 5.1.0 is

Re: [PHP-DEV] [Patch] tidy node and getParent

2005-12-14 Thread Jani Taskinen
If the patch was downloadable somewhere, I bet someone had already committed it. :) --Jani On Wed, 14 Dec 2005, Markus Fischer wrote: Hi, any chance for http://bugs.php.net/bug.php?id=34023 this time? thanks, - Markus Markus Fischer wrote: Hi, can this be taken into conside

Re: [PHP-DEV] [Patch] tidy node and getParent

2005-12-14 Thread Steph Fox
It is. Try PAT. - Original Message - From: "Jani Taskinen" <[EMAIL PROTECTED]> To: "Markus Fischer" <[EMAIL PROTECTED]> Cc: "John Coggeshall" <[EMAIL PROTECTED]>; "Andi Gutmans" <[EMAIL PROTECTED]>; ; <[EMAIL PROTECTED]> Sent: Wednesday, December 14, 2005 2:11 PM Subject: Re: [PHP-DE

[PHP-DEV] CVS Account Request: cconstantine

2005-12-14 Thread Craig Constantine
As per Pierre and Arnaud, I'm requesting a CVS account. I will be the new maintainer of Pear package System_Command. Copies of Pierre's or Arnaud's email messages available upon request. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: CVS Account Request: cconstantine

2005-12-14 Thread Pierre
On Wed, 14 Dec 2005 07:30:27 -0800 [EMAIL PROTECTED] ("Craig Constantine") wrote: > As per Pierre and Arnaud, I'm requesting a CVS account. I will be the > new maintainer of Pear package System_Command. Copies of Pierre's or > Arnaud's email messages available upon request. Confirmed, --Pierre

[PHP-DEV] Re: CVS Account Request: cconstantine

2005-12-14 Thread Steph Fox
Did somebody revoke PEAR Group's account-giving karma? On Wed, 14 Dec 2005 07:30:27 -0800 [EMAIL PROTECTED] ("Craig Constantine") wrote: As per Pierre and Arnaud, I'm requesting a CVS account. I will be the new maintainer of Pear package System_Command. Copies of Pierre's or Arnaud's email mess

Re: [PHP-DEV] Re: CVS Account Request: cconstantine

2005-12-14 Thread Lukas Smith
Steph Fox wrote: Did somebody revoke PEAR Group's account-giving karma? No, they could never open new cvs accounts. All they can do is grant access to existing users. regards, Lukas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: kraman

2005-12-14 Thread Krishna Raman
I am working with Dan Scott on the ibm_db2 and informix_pdo drivers. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] why is '01' == '1.'?

2005-12-14 Thread Greg Beaver
Hi all, I realize that 1 == '01' and 1 == '1.', but why is this next code also bool(true)? In this case, a string is explicitly being compared to a string, and yet both are being converted to an int prior to comparison. I can understand that implicit type conversion is needed when comparing st

Re: [PHP-DEV] why is '01' == '1.'?

2005-12-14 Thread Jani Taskinen
bool in_array ( mixed needle, array haystack [, bool strict] ) See the last parameter? :) --Jani On Wed, 14 Dec 2005, Greg Beaver wrote: Hi all, I realize that 1 == '01' and 1 == '1.', but why is this next code also bool(true)? In this case, a string is explicitly being comp