diff --git a/html/pages/downinterfaces.php b/html/pages/downinterfaces.php
deleted file mode 100644
index 350c487de..000000000
--- a/html/pages/downinterfaces.php
+++ /dev/null
@@ -1,117 +0,0 @@
-
-$type
");
-
-if($_GET['format'] == "rows") {
-echo("");
-echo("
- | Last Changed |
- |
- Hostname |
- |
- Interface |
- |
- Description |
- |
- Type |
- |
- Notes |
-
");
-} else {
-#echo("");
-}
-$i = 1;
-
- while($data = mysql_fetch_array($query)) {
- unset($class);
- $iid = $data[iid];
- $did = $data[did];
- $hostname = $data[hostname];
- $lastchange = $data[changed];
- $up = $data[up];
- $up_admin = $data[ip_admin];
- $ifname = fixifname($data[ifname]);
- $ifnamelong = $ifname;
- $hostnamelong = $data[hostname];
- $ifalias = $data[ifalias];
-
- $hostname = str_replace(".enta.net","",$hostname);
-
-unset($colour);
-
-
- if($ifalias == "") { $ifalias = "* Unlabelled *"; }
-
- $ifalias = str_replace(" [","|",$ifalias);
- $ifalias = str_replace("] (","|",$ifalias);
- $ifalias = str_replace(" (","||",$ifalias);
- $ifalias = str_replace("]","|",$ifalias);
- $ifalias = str_replace(")","|",$ifalias);
- list($ifalias,$type,$notes) = explode("|", $ifalias);
-
- if( strpos($ifalias,': ')) {
- list($class,$ifalias) = split(": ",$ifalias,2);
- }
- if($class == "") {
- if($ifalias == "* Unlabelled *") {
- $class = "unlabelled"; }
- else {
- $class = "unknown"; }
- }
- $class = $class . "cell";
- $ifname = makeshortif($ifname);
- $class = strtolower($class);
-
- if($_GET['format'] == "rows") {
-
- echo("
- | $lastchange |
- |
- $hostnamelong |
- |
- $ifnamelong |
- |
- $ifalias |
- |
- $type |
- |
- $notes |
-
");
-
- } else {
-
-
- echo("");
-
-
-# echo("
-# $ifalias
-# $type $notes
-# $hostname
-# $ifname |
-# ");
-# if ($i < 6) {
-# $i++;
-# } else {
-# $i=1;
-# echo("");
-# }
- }
-
- }
-
-echo("
");
-?>