Merge pull request #1324 from pi-hole/XhmikosR-patch-9

api_FTL: Remove duplicate semicolon
This commit is contained in:
Adam Warner
2020-05-18 19:13:06 +01:00
committed by GitHub

View File

@@ -320,7 +320,7 @@ else
// UTF-8 encode domain
$tmp[2] = utf8_encode($tmp[2]);
// UTF-8 encode client host name
$tmp[3] = utf8_encode($tmp[3]);;
$tmp[3] = utf8_encode($tmp[3]);
array_push($allQueries,$tmp);
}