diff options
author | Romain d'Alverny <rda@mageia.org> | 2011-03-15 11:51:44 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2011-03-15 11:51:44 +0000 |
commit | 88f62f53f38871417164cf8006a063255cfa59f8 (patch) | |
tree | bd919b636804f17e576e64a2f229abef316d5976 | |
parent | ebce1336b1f69c03db43323f68c8263e98b58ee0 (diff) | |
download | www-88f62f53f38871417164cf8006a063255cfa59f8.tar www-88f62f53f38871417164cf8006a063255cfa59f8.tar.gz www-88f62f53f38871417164cf8006a063255cfa59f8.tar.bz2 www-88f62f53f38871417164cf8006a063255cfa59f8.tar.xz www-88f62f53f38871417164cf8006a063255cfa59f8.zip |
fix mirror path
-rw-r--r-- | mirrors.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mirrors.php b/mirrors.php index 28ae75f18..f36f9a2bd 100644 --- a/mirrors.php +++ b/mirrors.php @@ -40,7 +40,7 @@ $mirrors = array( ), 'Nouvelle Calédonie' => array( 'Nouméa' => array( - 'http://mageia.nautile.nc/mageia/distrib/' + 'http://mageia.nautile.nc/mageia/' ) ), 'USA' => array( @@ -79,7 +79,7 @@ foreach ($mirrors as $country => $cities): $pu = parse_url($url); $s_mirrors .= sprintf('<td>%s</td><td><a href="%s%s">%s</a></td></tr>', strtoupper($pu['scheme']), - $url, 'iso/', $pu['host']); + $url, 'iso/cauldron/', $pu['host']); endforeach; $s_cities .= sprintf('<td class="city" rowspan="%d">%s</td>', count($servers), $city) . $s_mirrors; |