Re: [PHP-DEV] [PATCH] jpeg2000 in php 4.3

2003-01-17 Thread Adam Wright
- From: Marcus Börger [EMAIL PROTECTED] To: Adam Wright [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 7:40 PM Subject: Re: [PHP-DEV] jpeg2000 in php 4.3 At 13:50 16.01.2003, Adam Wright wrote: I've completed a short patch which cleans up the JPEG 2000 raw codestream

Re: [PHP-DEV] jpeg2000 in php 4.3

2003-01-16 Thread Adam Wright
I've completed a short patch which cleans up the JPEG 2000 raw codestream support (j2c, though I've renamed it jpeg2000 in the file for clarity) in getimagesize. It also adds JP2 support. I've put a context diff of it against 4.3.x-dev from this morning up at...

[PHP-DEV] Re: #21659 [Com]: sprintf

2003-01-15 Thread Adam Wright
Agreed in general. And whilst I'm here can I throw in my 2c about Bogus? Although an accurate description, it's hardly likely to be perceived as friendly. If you've taken the time to report a bug, even if you are in error, having it thrown back as Bogus seems pretty mean. How about a less

Re: [PHP-DEV] Re: #21659 [Com]: sprintf

2003-01-15 Thread Adam Wright
Last ditch effort of NotAPHPBug? ;) adamw - Original Message - From: Derick Rethans [EMAIL PROTECTED] To: Ilia A. [EMAIL PROTECTED] Cc: Adam Wright [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:21 PM Subject: Re: [PHP-DEV] Re: #21659 [Com]: sprintf On Wed

Re: [PHP-DEV] Re: #21659 [Com]: sprintf

2003-01-15 Thread Adam Wright
better. Guess it's just a personal preference. I'll go back to my lurking now :) adamw - Original Message - From: Ilia A. [EMAIL PROTECTED] To: Adam Wright [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:39 PM Subject: Re: [PHP-DEV] Re: #21659 [Com]: sprintf

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Adam Wright
But in C, you can #if 0 whole blocks out regardless. I'm in favour of a change like this (if not this specific one) in 4.2. adamw - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Anders Johannsen [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, November 27, 2001 5:21 PM

Re: [PHP-DEV] username of a currently logged in user

2001-10-30 Thread Adam Wright
Heya, Just FYI, php-dev is for developing PHP (not developing *with* PHP) - You're better off on [EMAIL PROTECTED] $PHP_AUTH_USER is the right variable - Odds on, if there really is a user logged in, you've in a function and have forgotten to globalise it (it's not implicitly global). adamw

Re: [PHP-DEV] Bug #12737: index bug concerning 00 and 08

2001-08-14 Thread Adam Wright
0n defines octal representation (which is why 00 though 08 go 'wrong'). See http://php.net/manual/en/language.types.integer.php So, this isn't a bug in PHP. adamw - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 14, 2001 11:03 AM Subject:

[PHP-DEV] Expat XML problem

2001-07-05 Thread Adam Wright
./configure --with-xml=shared used to enable shared module support for the Expat module, but as of 4.0.6 it doesn't seem to work. Expat support does get compiled in, but not as a dynamic module. Is this a new bug, or just me being dense? adamw -- PHP Development Mailing List

Re: [PHP-DEV] Bug #10381: array_sum() on an undefined variable kills php

2001-04-18 Thread Adam Wright
Seems to be fixed in the latest CVS. adamw - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 3:58 PM Subject: [PHP-DEV] Bug #10381: array_sum() on an undefined variable kills php From: [EMAIL PROTECTED] Operating system:

Re: [PHP-DEV] please remove pgsql warning on fetch_row - includes diff

2001-03-26 Thread Adam Wright
Heya, Using your example... while (@pg_fetch_row()) { ... } will suppress the warnings just for the call to pg_fetch_row. adamw - Original Message - From: "Marc Boeren" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 26, 2001 10:47 AM Subject: [PHP-DEV] please

[PHP-DEV] Can someone *please* commit the patch attached to bug 6795

2001-01-26 Thread Adam Wright
At the moment, our internal PHP deployment differs from the normal PHP source tree because of this bug. It would be really useful if someone could just commit this patch sometime soon (before 4.05 :), so we can get back to using the normal tree. adamw -- PHP Development Mailing List

Re: [PHP-DEV] Refreshing a form starting from a combo box change

2001-01-18 Thread Adam Wright
What you're asking to do is generally a client side thing (getting the browser to fill in a form is normally done with javascript). You *could*, I guess, get the combo box to submit the form, which PHP then prints out prepopulated, but its rather a waste of resources. Unless, of course, you need