diff --git a/www/clients.php b/www/clients.php index 7a541c2..d3386a3 100644 --- a/www/clients.php +++ b/www/clients.php @@ -157,7 +157,7 @@ foreach ($clients as $c) { if (!$first) echo ",\n"; $path = ".data/clients/$c/$file"; $size = filesize($path); - $url = "https://www.necronda.net/elwig/clients/$c/$file"; + $url = "https://elwig.at/clients/$c/$file"; $mod = date(DATE_ATOM, filemtime($path)); $cre = date(DATE_ATOM, filectime($path)); $datetime = "null"; diff --git a/www/files/index.php b/www/files/index.php index ac623dc..7dd2e07 100644 --- a/www/files/index.php +++ b/www/files/index.php @@ -61,7 +61,7 @@ foreach ($files as $name => [$size, $mtime, $ctime]) { $p1 = strrpos($name, '-') + 1; $p2 = strrpos($name, '.'); $vers = substr($name, $p1, $p2 - $p1); - $url = "https://www.necronda.net/elwig/files/$name"; + $url = "https://elwig.at/files/$name"; $mod = date(DATE_ATOM, $mtime); $cre = date(DATE_ATOM, $ctime); $prod = strtolower(substr($name, 0, $p1 - 1));