From c75f167392dbab24d18e64daa8d721ea5af1f6d5 Mon Sep 17 00:00:00 2001 From: Jacob Salmela Date: Fri, 10 Jun 2016 18:39:10 -0500 Subject: [PATCH] update version check to 2.7 --- js/pihole/footer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/pihole/footer.js b/js/pihole/footer.js index 99ba09e0..a449be0b 100644 --- a/js/pihole/footer.js +++ b/js/pihole/footer.js @@ -52,8 +52,8 @@ $.getJSON("https://api.github.com/repos/pi-hole/AdminLTE/releases/latest", funct }); /* - * Make sure that Pi-hole is updated to at least v2.6.4, since that is needed to use the sudo + * Make sure that Pi-hole is updated to at least v2.7, since that is needed to use the sudo * features of the interface */ -if(versionCompare(piholeVersion, "v2.6.4") < 0) - alert("Pi-hole needs to be updated to at least v2.6.4 before you can use features such as whitelisting/blacklisting from this web interface!") +if(versionCompare(piholeVersion, "v2.7") < 0) + alert("Pi-hole needs to be updated to at least v2.7 before you can use features such as whitelisting/blacklisting from this web interface!")