From 49cfdc9c7f11f17bbc038e13b63ce15d72d3b7dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Sat, 25 May 2024 21:32:24 +0200 Subject: [PATCH] Fix codespell MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- scripts/pi-hole/php/FTL.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pi-hole/php/FTL.php b/scripts/pi-hole/php/FTL.php index 5a60d76de..0fd9a55b8 100644 --- a/scripts/pi-hole/php/FTL.php +++ b/scripts/pi-hole/php/FTL.php @@ -47,9 +47,9 @@ function connectFTL() return @fsockopen($address, $port, $errno, $errstr, 1.0); } -function sendRequestFTL($requestin, $socket) +function sendRequestFTL($request_in, $socket) { - $request = '>'.$requestin; + $request = '>'.$request_in; fwrite($socket, $request) or exit('{"error":"Could not send data to server"}'); }