Final (hopefully) XHTML fixes to geo code.

git-svn-id: http://svn.automattic.com/wordpress/trunk@332 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2003-08-23 06:03:38 +00:00
parent cad9e2f88f
commit 05b0dca976
2 changed files with 12 additions and 13 deletions

View File

@@ -359,13 +359,13 @@ function print_UrlPopNav() {
array('http://mapserver.maptech.com/api/espn/index.cfm?lat='.get_Lat().'&lon='.get_Lon().'&scale=100000&zoom=50&type=1&icon=0&&scriptfile=http://mapserver.maptech.com/api/espn/index.cfm',
'Maptech near here')
);
echo '<form name="form">
echo '<form action=""><div>
<select name="site" size="1" onchange="formHandler(this.form);" >'."\n";
echo '<option value=".">Sites referencing '.get_Lat().' x '.get_Lon()."\n";
echo '<option value=".">Sites referencing '.get_Lat().' x '.get_Lon()."</option>\n";
foreach($sites as $site) {
echo "\t".'<option value="'.$site[0].'">'.$site[1]."</option>\n";
}
echo '</select>
echo '</select></div>
</form>'."\n";
}