From 43a4cf593693d966503cd0eeefa460e4b039ab1c Mon Sep 17 00:00:00 2001 From: Christian Dresel Date: Sun, 19 Aug 2018 09:58:23 +0200 Subject: [PATCH] Link zum Weg bei allen routen Signed-off-by: Christian Dresel --- index.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 58a8700..4b7aed2 100644 --- a/index.php +++ b/index.php @@ -195,8 +195,17 @@ Destination ID '; foreach($output['routes'] as $route) { + $set=0; echo ""; - foreach($route as $temp) { echo "$temp"; } + foreach($route as $temp) { + if ($set == 0) { + echo ''.$temp.''; + $set=1; + } + else { + echo "$temp"; + } + } echo ""; } echo "";