Merge pull request #494 from pi-hole/devel

Release v3.0.1
This commit is contained in:
Adam Warner
2017-05-04 15:12:29 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -68,7 +68,7 @@
<div class="col-md-12">
<div class="box" id="queries-over-time">
<div class="box-header with-border">
<h3 class="box-title">Queries over Time</h3>
<h3 class="box-title">Queries over last 24 hours</h3>
</div>
<div class="box-body">
<div class="chart">
+1 -1
View File
@@ -30,7 +30,7 @@ if(isset($_GET["offset"]))
fseek($file, $offset);
$lines = [];
while (!feof($file))
array_push($lines,fgets($file));
array_push($lines, htmlspecialchars(fgets($file)));
die(json_encode(array("offset" => ftell($file), "lines" => $lines)));
}
}