Re: [PHP-DEV] PHP 4.0 Bug #1179 Updated: PAM support

2001-02-10 Thread Matt McClanahan
On Sat, Feb 10, 2001 at 07:07:19PM +0100, Derick Rethans wrote: > On 10 Feb 2001 [EMAIL PROTECTED] wrote: > > > ID: 1179 > > Updated by: jimw > > Reported By: [EMAIL PROTECTED] > > Status: Open > > Bug Type: Feature/Change Request > > Assigned To: > > Comments: > > > > nobody has written this ex

Re: [PHP-DEV] Function request

2001-02-12 Thread Matt McClanahan
On Mon, Feb 12, 2001 at 09:23:36AM +0100, Marc Boeren wrote: > >I think this would be nice. To be able to pull a multi-dimentional array > >from a mysql result. > > I'm working on a database abstraction module that does exactly this, and > should support every database module that is loaded into

Re: [PHP-DEV] Bug #11611 Updated: nl2br() outputting invalid tags

2001-06-22 Thread Matt McClanahan
On Fri, Jun 22, 2001 at 03:18:20PM +0200, lenar wrote: > Shouldn't there be an optional flag to nl2br to change the behavior of > function to what it used to be. Just there's no point in like tags > when the rest of your code is just generating HTML compliant output, not > XHTML. > > Ok, somebo

[PHP-DEV] Bug 8352 should be closed

2001-04-25 Thread Matt McClanahan
Bug #8352 is invalid, the reporter misunderstood how MySQL's decimal field works. The behavior of mysql_field_len is correct. The SQL line 'price decimal(9,2)' calls for 9 digits, two of which are after the decimal point. http://www.php.net/bugs.php?id=8352&edit=1 Matt -- PHP Development Mai

[PHP-DEV] Notes on four MySQL bugs

2001-04-25 Thread Matt McClanahan
Some more bug comments. They all look like they can be closed to me: 8634: User is expecting the default link identifier to switch back to $db after he closed $db2, which isn't how it works. Not a bug. 9455: I don't know what we're supposed to do with this one. Should be solved in a support f

[PHP-DEV] Re: [PHP-QA] 4.0.6

2001-05-02 Thread Matt McClanahan
On Wed, May 02, 2001 at 06:58:57PM +0100, James Moore wrote: > > >I would be very against this.. to me it seems silly, the current QA Team > > >will have to spend 90% of their time running through the (maybe > > hundreds) of > > >reports rather than testing. It makes more sense to me to try and a

Re: [PHP-DEV] Re: [PHP-QA] 4.0.6

2001-05-02 Thread Matt McClanahan
On Wed, May 02, 2001 at 09:03:00PM +0200, Hartmut Holzgraefe wrote: > Matt McClanahan wrote: > > > I don't see inviting this wider audience as providing enough beneficial > > information to justify the work of clearing away the less useful > > reports. >

Re: [PHP-DEV] Extension checkins?

2001-11-01 Thread Matt McClanahan
On Fri, Nov 02, 2001 at 12:11:17AM +, Jonathan Gillette wrote: > Hi. I'm aware of an extension that would fit quite nicely into the > current set. What's the protocol for proposing a entry into the > extension repository? Mentioning what it does may be a good start.. Matt -- PHP Develop

Re: [PHP-DEV] Re: [PHP] PHP & XML

2001-12-07 Thread Matt McClanahan
On Fri, Dec 07, 2001 at 06:43:31PM -0500, benjamin yates wrote: > >Most people never mix XML and PHP in the same file. Let's not > >inconvenience the masses for the benefit of the few. > >-Rasmus > > > > Yet another good reason to get rid of them. :) > > > --Jani > > please never get rid of

Re: [PHP-DEV] XSLT bug

2002-04-18 Thread Matt McClanahan
On Thu, Apr 18, 2002 at 12:57:21AM -0400, Ken Egervari wrote: > If I have an XML document with 2 applications nodes and the following > template in the style sheet > > > > > > > > the result is > > b. the name > d. the name2 > > When I think it should be "a. " and "b .". Fo

Re: [PHP-DEV] XSLT bug

2002-04-18 Thread Matt McClanahan
On Thu, Apr 18, 2002 at 02:09:01PM -0400, Ken Egervari wrote: > I know that there is a workaround (which is obvious), but I just > wanted to report it. position() is supposed to return the position > of the node within the current node list. So i'd expect 1,2,3,4...N. > It's just strange why i

[PHP-DEV] Announce: php_imlib 0.3: PHP Imlib2 extension

2001-01-10 Thread Matt McClanahan
I'm pleased to announce the third public release of php_imlib, an extension for PHP 4 that makes the Imlib2 image manipulation library available from within PHP scripts. New in this release is support for color ranges (gradients), blurring and sharpening of images, and quality/compression setting

Re: [PHP-DEV] PHP 4.0 Bug #8860 Updated: variable array not working

2001-01-23 Thread Matt McClanahan
On Tue, 23 Jan 2001, Cynic wrote: > seems like 'three'. but someone with more knowledge should > answer this. Since it's actually possible to have a variable named $test[2], that would probably lead to confusion. For example, $var = 'test[2]'; ${'test[2]'} = 'Foo'; echo $$var; Will output 'F