Fix codespell

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König
2024-05-25 21:32:24 +02:00
parent 4582359a99
commit 49cfdc9c7f
+2 -2
View File
@@ -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"}');
}