Showing with 3 additions and 3 deletions.
  1. +1 −1 index.php
  2. +1 −1 mappa/index.php
  3. +1 −1 regione.php
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<br />
Le voci, ordinate per regione e provincia, sono accessibili direttamente dalla cartina e
dall'elenco a lato, anche in versione
<a class="generalink" href="http://lugmap.it/">georeferenziata</a>.
<a class="generalink" href="http://lugmap.linux.it/mappa/">georeferenziata</a>.
</div>

<br />
Expand Down
2 changes: 1 addition & 1 deletion mappa/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
if (array_key_exists ('zoom', $_GET)) {
$found = false;
$lat = $lon = 0;
$contents = file_get_contents ('data/geo.txt');
$contents = file_get_contents ('../data/geo.txt');
$contents = json_decode ($contents, true);

foreach ($contents ['features'] as $row) {
Expand Down
2 changes: 1 addition & 1 deletion regione.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
# stampa dei campi ?>
<tr class="row_<?php echo ($nriga % 2); ?>">
<td class="province"><?php echo $provincia ?></td>
<td><a href="http://lugmap.it/?zoom=<?php echo str_replace (' ', '_', $denominazione) ?>"><?php echo $zona ?></a></td>
<td><a href="http://lugmap.linux.it/mappa/?zoom=<?php echo str_replace (' ', '_', $denominazione) ?>"><?php echo $zona ?></a></td>
<td><a class="generalink" href="<?php echo $sito ?>"><?php echo $denominazione ?></a></td>
</tr>
<?php endwhile;?>
Expand Down