It was missing a '.

This commit is contained in:
skeeter 2002-04-15 04:03:09 +00:00
parent 44ab61718d
commit 2cc39d765e

View File

@ -582,7 +582,7 @@
$name = 'country'; $name = 'country';
} }
$str = '<select name="'.$name.'">'."\n" $str = '<select name="'.$name.'">'."\n"
. ' <option value=" ".($selected == ' '?' selected':'').'>Select One</option>'."\n"; . ' <option value=" "'.($selected == ' '?' selected':'').'>Select One</option>'."\n";
reset($this->country_array); reset($this->country_array);
while(list($key,$value) = each($this->country_array)) while(list($key,$value) = each($this->country_array))
{ {