From cc2ca3fb6c1c782bf9dc85313f509c73c24a95fb Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Sat, 5 Sep 2020 14:24:52 +0100 Subject: [PATCH] /var/log/ -> /var/log/pihole/ Signed-off-by: Adam Warner --- scripts/pi-hole/php/tailLog.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pi-hole/php/tailLog.php b/scripts/pi-hole/php/tailLog.php index f778d561..dcbe80ce 100644 --- a/scripts/pi-hole/php/tailLog.php +++ b/scripts/pi-hole/php/tailLog.php @@ -14,11 +14,11 @@ if(!$auth) die("Not authorized"); // files as large as the pihole.log if(isset($_GET["FTL"])) { - $file = fopen("/var/log/pihole-FTL.log","r"); + $file = fopen("/var/log/pihole/pihole-FTL.log","r"); } else { - $file = fopen("/var/log/pihole.log","r"); + $file = fopen("/var/log/pihole/pihole.log","r"); } if(!$file)