From 61e565ddf0d6cf551d1ca22b58287e03e0bb6f6d Mon Sep 17 00:00:00 2001 From: Christian Dresel Date: Thu, 23 Aug 2018 12:40:06 +0200 Subject: [PATCH 1/2] fix Interface in neighbours table Signed-off-by: Christian Dresel --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index dc603fd..c3d263e 100644 --- a/index.php +++ b/index.php @@ -69,7 +69,7 @@ } foreach ($neighbour as $temp) { $address=explode(" ",strstr($temp,"address")); - $interface=explode(" ",strstr($temp,"interface")); + $interface=explode(" ",strstr($temp,"if")); $reach=explode(" ",strstr($temp,"reach")); $rxcost=explode(" ",strstr($temp,"rxcost")); $txcost=explode(" ",strstr($temp,"txcost")); From 175fa4b2b9fdcd2096e3b9f925a54685888a6daf Mon Sep 17 00:00:00 2001 From: Christian Dresel Date: Thu, 23 Aug 2018 13:18:02 +0200 Subject: [PATCH 2/2] Add Link to sources Signed-off-by: Christian Dresel --- index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/index.php b/index.php index c3d263e..6eeb31b 100644 --- a/index.php +++ b/index.php @@ -123,6 +123,7 @@

Babel information

"; + echo 'Quellcode Simple Babelweb'; foreach($output['data'] as $temp) { echo "$temp"; } echo "";