From 26ec74a75afa35c7c3359450ef836a34437656cf Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 31 Jul 2021 21:13:01 +0300 Subject: [PATCH] footer.php: move FTL before Web Interface Signed-off-by: XhmikosR --- scripts/pi-hole/php/footer.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/pi-hole/php/footer.php b/scripts/pi-hole/php/footer.php index 2837d0bb..80003eff 100644 --- a/scripts/pi-hole/php/footer.php +++ b/scripts/pi-hole/php/footer.php @@ -47,17 +47,17 @@ require "scripts/pi-hole/php/update_checker.php"; $coreVersionStr = $core_current . (isset($core_commit) ? " (" . $core_branch . ", " . $core_commit . ")" : ""); - $webVersionStr = $web_current . (isset($web_commit) ? " (" . $web_branch . ", " . $web_commit . ")" : ""); $ftlVersionStr = $FTL_current . (isset($FTL_commit) ? " (" . $FTL_branch . ", " . $FTL_commit . ")" : ""); + $webVersionStr = $web_current . (isset($web_commit) ? " (" . $web_branch . ", " . $web_commit . ")" : ""); $githubBaseUrl = "https://github.com/pi-hole"; $coreUrl = $githubBaseUrl . "/pi-hole"; - $webUrl = $githubBaseUrl . "/AdminLTE"; $ftlUrl = $githubBaseUrl . "/FTL"; + $webUrl = $githubBaseUrl . "/AdminLTE"; $coreReleasesUrl = $coreUrl . "/releases"; - $webReleasesUrl = $webUrl . "/releases"; $ftlReleasesUrl = $ftlUrl . "/releases"; + $webReleasesUrl = $webUrl . "/releases"; ?>