[ic] 127.0.0.1 bug?

Alex alex@jdmrktng.com
Tue, 9 Jan 2001 19:25:25 -0800 (PST)


Thanks again. And while we are on the Bugzilla subject, here is one more
issue I wished to mention. It's about how the chain_cost subroutine in
Data.pm. The following part seemed not to be working correctly:

			if($passed_key) {
                                    (! $key   and $key   = $passed_key)
                                               or
                                    (! $field and $field = $passed_key)
                                               or
                                    (! $table and $table = $passed_key);
			}

It started working after I changed it to

			if($passed_key) {
				if($key !~ /\w/) {
		        		$key   = $passed_key;
				}
				elsif($field !~ /\w/) {
        				$field = $passed_key;
				}
				elsif($table !~ /\w/) {
			        	$table = $passed_key;
				}
			}


----
Alex

On Tue, 9 Jan 2001, Mike Heins wrote:

> Date: Tue, 9 Jan 2001 09:24:48 -0500
> From: Mike Heins <mikeh@minivend.com>
> Reply-To: interchange-users@lists.akopia.com
> To: interchange-users@lists.akopia.com
> Subject: Re: [ic] 127.0.0.1 bug?
> 
> Quoting Mike Heins (mikeh@minivend.com):
> > If you find something you think is a bug, please investigate it and
> > then enter it in Bugzilla *if it isn't already there*. If you think it
> > is something that should be corrected even if you find a workaround,
> > enter it as an enhancement. We do pay attention to Bugzilla quite closely,
> > and we do pay attention to enhancement requests. But I have a problem with
> > ones fired from the hip.
> 
> I apologize. It isn't in the latest version of the FAQ, nor could I 
> find it in Bugzilla. I will find out what is going on with the FAQ,
> which doesn't appear to have any new questions since June.
> 
> -- 
> Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH  45056
> phone +1.513.523.7621 fax 7501 <heins@akopia.com>
> 
> Unix version of an Outlook-style virus:
> It works on the honor system. Please forward this message to everyone
> you know, and delete a bunch of your files at random.
> 
> _______________________________________________
> Interchange-users mailing list
> Interchange-users@lists.akopia.com
> http://lists.akopia.com/mailman/listinfo/interchange-users
>