Commit 246ac263 authored by Asa Venton's avatar Asa Venton
Browse files

spelling

parent bf914a5e
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
getjson.sh 100755 → 100644
File mode changed from 100755 to 100644
......@@ -99,7 +99,7 @@ if (isset($_GET['route'])) {
echo '<p><br><b>' . ucfirst($direction) . ' | ' . $displayDay . '</b>';
echo '<table align="left" border="1" cellpadding="3" width="100%">';
$trips = getData('trips', $route, $direction, $day);
// TODO: sort stopList by stopList['order']
// TODO: sort $stopList by $stopList['order']
// TODO: must be a more efficient way to search for $rowStop['stop_name'] in $trip?
foreach ($stopList as $rowStop) {
echo '<tr><td><b>' . $rowStop['stop_name'] . '</b></td>';
......@@ -129,7 +129,7 @@ else {
$routes = getData('routes', false, false, false);
$meta = getData('meta', false, false, false);
echo '<h3>' . $meta['name']. ' | ' . $meta['from'] . ' - ' . $meta['to'] . '</h3>';
echo '<h4>Service Updates:</h4>\n<p>';
echo '<h4>Service Updates:</h4><p>';
foreach ($servUpdates as $update) {
echo $update['content'] . '- <b>Affected Routes: </b>' . implode(", ",$update['services']) . '<br><br>';
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment