From cfbfff00a9980238e55327b3c9341eace4f50b88 Mon Sep 17 00:00:00 2001 From: billz Date: Mon, 29 Jun 2020 14:13:06 +0100 Subject: [PATCH] Update w/ fontawesome glyphs --- templates/networking.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/networking.php b/templates/networking.php index b566a91d..341e8e0e 100755 --- a/templates/networking.php +++ b/templates/networking.php @@ -54,10 +54,10 @@ echo "".$route["interface"].""; echo "".$route["ip-address"].""; echo "".$route["gateway"]."
".$route["gw-name"].""; - $checkok = $route["access-ip"] ? "✓" : "failed"; - echo "".$checkok."
".RASPI_ACCESS_CHECK_IP.""; - $checkok = $route["access-dns"] ? "✓" : "failed"; - echo "".$checkok."
".RASPI_ACCESS_CHECK_DNS.""; + $status = $route["access-ip"] ? "fa-check" : "fa-times"; + echo '
'.RASPI_ACCESS_CHECK_IP.''; + $status = $route["access-dns"] ? "fa-check" : "fa-times"; + echo '
'.RASPI_ACCESS_CHECK_DNS.''; echo ""; } }