index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2024-11-15 09:01:17 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2024-11-15 09:01:17 +0100 |
commit | b64988c27a060b399a247d1ffe7bd71185c2cf32 (patch) | |
tree | 702673626fab9bdd8e216c5454f50d1c25816af5 | |
parent | 578462730b0c6e5daaee4e4a5217e85f3b065b46 (diff) |
-rw-r--r-- | mirrors.php | 5 |
diff --git a/mirrors.php b/mirrors.php index 8143588..959fbda 100644 --- a/mirrors.php +++ b/mirrors.php @@ -287,6 +287,11 @@ EOF; $oddity = "odd"; if (isset($content['urls'])) { foreach ($content['urls'] as $row) { + # I'm sure this can be done differently.. + if( $row["url"] == "http://arch86.takehiko.pl/" || + $row["url"] == "https://arch86.takehiko.pl/" ) { + continue; + } print " <tr class=\"" . $oddity ."\">\n"; print " <td>\n"; print " " . $row["url"] . "\n"; |