More XHTML fixes.

git-svn-id: http://svn.automattic.com/wordpress/trunk@329 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2003-08-22 23:09:43 +00:00
parent 84e4f844e6
commit cbe9acb9c4
1 changed files with 6 additions and 4 deletions

View File

@ -343,7 +343,7 @@ function print_UrlPopNav() {
array('http://www.acme.com/mapper/?lat='.get_Lat().'&long='.get_Lon().'&scale=11&theme=Image&width=3&height=2&dot=Yes',
'Acme Mapper'),
array('http://geourl.org/near/?lat='.get_Lat().'&lon='.get_Lon().'&dist=500',
'GeoUrls near here'),
'GeoURLs near here'),
array('http://www.geocaching.com/seek/nearest.aspx?origin_lat='.get_Lat().'&origin_long='.get_Lon().'&dist=5',
'Geocaches Near Nere'),
array('http://www.mapquest.com/maps/map.adp?latlongtype=decimal&latitude='.get_Lat().'&longitude='.get_Lon(),
@ -359,12 +359,14 @@ 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"><select name="site" size="1" onchange="formHandler(this.form);" >'."\n";
echo '<form name="form">
<select name="site" size="1" onchange="formHandler(this.form);" >'."\n";
echo '<option value=".">Sites referencing '.get_Lat().' x '.get_Lon()."\n";
foreach($sites as $site) {
echo '<option value="'.$site[0].'">'.$site[1]."\n";
echo '\t<option value="'.$site[0].'">'.$site[1]."</option>\n";
}
echo '</select></form>'."\n";
echo '</select>
</form>'."\n";
}
function longitude_invalid() {