Adapt to new directory structure.

This commit is contained in:
George Kaklamanos 2015-07-19 14:24:36 +03:00
parent 50a0369ba1
commit c229df33b5
7 changed files with 27 additions and 31 deletions

View file

@ -2,11 +2,11 @@
<html>
<head>
<title>uBus - ShowStop</title>
<?php include 'head.php'; ?>
<?php include 'map.php'; ?>
<?php include 'modules/head.php'; ?>
<?php include 'modules/map.php'; ?>
</head>
<body>
<?php include 'nav.php'; ?>
<?php include 'modules/nav.php'; ?>
<h1>ShowStop</h1>
<p>Below you can find two tables. One of them shows a list of routes tha visit
@ -16,7 +16,7 @@ is also a map showing the location of the requested stop.</p>
<?php
include 'libdata.php';
include 'modules/libdata.php';
if (isValidStop($_GET["stop"])){
$stop=getStopInfo($_GET["stop"]);
@ -58,7 +58,7 @@ function PrintRoutes($stp){
<?php include 'foot.php'; ?>
<?php include 'modules/foot.php'; ?>
</body>
</html