--- a/stopList.php +++ b/stopList.php @@ -22,10 +22,9 @@ echo '
'; @@ -37,8 +36,8 @@ navbar(); echo ' '; } else { // Timing Points / All stops - if (isset($allstops)) { - $listType = 'allstops=yes'; - $stops = getStops(); - include_header("All Stops", "stopList"); - navbar(); - } else if (isset($nearby)) { + if (isset($nearby)) { $listType = 'nearby=yes'; include_header("Nearby Stops", "stopList", true, true); trackEvent("Stop Lists", "Stops Nearby", $_SESSION['lat'] . "," . $_SESSION['lon']); @@ -66,7 +60,7 @@ die(); } $stops = getNearbyStops($_SESSION['lat'], $_SESSION['lon'], 15); - echo ''; + echo '
'; $stopPositions[] = Array( $_SESSION['lat'], $_SESSION['lon'] @@ -77,41 +71,41 @@ $sub_stop["stop_lon"] ); } - echo staticmap($stopPositions, 0, "iconb", true, true); + echo staticmap($stopPositions, true, true); placeSettings(); - echo ''; + echo '
'; } else if (isset($suburb)) { $stops = getStopsBySuburb($suburb); include_header("Stops in " . ucwords($suburb), "stopList"); navbar(); trackEvent("Stop Lists", "Stops By Suburb", $suburb); } else { - $stops = getStops(true, $firstLetter); - include_header("Timing Points / Major Stops", "stopList"); + $listType = 'allstops=yes'; + $stops = getStops((isset($firstLetter)? $firstLetter : "")); + include_header("Stops by Name", "stopList"); navbar(); - } + } echo ' '; - if (isset($nearby)) - echo ''; + if (isset($nearby)) { + echo '
'; +} } include_footer(); ?>