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

@ -1,5 +1,5 @@
<?php
$routes = json_decode(file_get_contents("routes.json"), true);
$stops = json_decode(file_get_contents("stops.json"), true);
$busposition = json_decode(file_get_contents("busposition.json"), true);
$routes = json_decode(file_get_contents("data/routes.json"), true);
$stops = json_decode(file_get_contents("data/stops.json"), true);
$busposition = json_decode(file_get_contents("data/busposition.json"), true);
?>