From: maxious Date: Fri, 25 Mar 2011 08:53:53 +0000 Subject: Shorter names for combined stops and fix sorting bug X-Git-Url: http://maxious.lambdacomplex.org/git/?p=busui.git&a=commitdiff&h=c617cbaa3793ec48f4c77b9ad2eb59d326ca013a --- Shorter names for combined stops and fix sorting bug --- --- a/include/common-template.inc.php +++ b/include/common-template.inc.php @@ -87,7 +87,7 @@ text-size: 0.2em; } .min-width-480px .viaPoints { - display: block; + display: inline; } #extrainfo { visibility: hidden; --- a/stop.php +++ b/stop.php @@ -32,8 +32,15 @@ $stopid = $stops[0][0]; $stopLinks.= "Individual stop pages: "; foreach ($stops as $key => $sub_stop) { - $stopNames[$key] = $sub_stop[1] . ' Stop #' . ($key + 1); - $stopLinks.= '' . $stopNames[$key] . ' '; + // $stopNames[$key] = $sub_stop[1] . ' Stop #' . ($key + 1); + if (strpos($stop[1], + "Station")) { + $stopNames[$key] = 'Platform ' . ($key + 1); + $stopLinks.= '' . $sub_stop[1] . ' '; + } else { + $stopNames[$key] = '#' . ($key + 1); + $stopLinks.= '' . $sub_stop[1] . ' Stop #' . ($key + 1) . ' '; + } $stopPositions[$key] = Array( $sub_stop[2], $sub_stop[3] @@ -66,6 +73,7 @@ } echo '