if ($high_distance=="INF")
{
        unset($high_distance);
}
if ($low_distance=="INF") 
{
        unset($high_distance);
}  



Shouldn't this be:



if ($high_distance=="INF")
{
        unset($high_distance);
}
if ($low_distance=="INF") 
{
        unset($low_distance);
}



- seb
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.274 / Virus Database: 144 - Release Date: 23/08/2001


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to