Skip to content

Commit

Permalink
Fix codespell
Browse files Browse the repository at this point in the history
Signed-off-by: Christian König <[email protected]>
  • Loading branch information
yubiuser committed May 25, 2024
1 parent 4582359 commit 49cfdc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/pi-hole/php/FTL.php
Original file line number Diff line number Diff line change
Expand Up @@ -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"}');
}

Expand Down

0 comments on commit 49cfdc9

Please sign in to comment.