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,10 +2,10 @@
<html>
<head>
<title>uBus - ShowLine</title>
<?php include 'head.php'; ?>
<?php include 'modules/head.php'; ?>
</head>
<body>
<?php include 'nav.php'; ?>
<?php include 'modules/nav.php'; ?>
<h1>ShowLine</h1>
<p>Here you can find a list of routes that have a specified line number. Click
@ -15,7 +15,7 @@ on the map.</p>
<?php
include 'libdata.php';
include 'modules/libdata.php';
if (isValidLine($_GET["line"])){
echo '<header><h1>Line ' . $_GET["line"] . '</h1></header>';
@ -39,7 +39,7 @@ function PrintRoutes($line){
<?php include 'foot.php'; ?>
<?php include 'modules/foot.php'; ?>
</body>
</html