From: Roland Häder Date: Mon, 3 Nov 2014 09:53:26 +0000 (+0100) Subject: Fixed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4ebfc6d0240b77dbe6bd6a73a0c5e322e49739f1;p=ctracker.git Fixed Signed-off-by: Roland Häder --- diff --git a/libs/lib_general.php b/libs/lib_general.php index 62062d7..21cd6ab 100644 --- a/libs/lib_general.php +++ b/libs/lib_general.php @@ -99,7 +99,7 @@ function determineCrackerTrackerRealRemoteAddress () { if ($address == 'unknown') { // Invalid IP somehow given $address = '0.0.0.0'; - elseif (strstr($address, ',')) { + } elseif (strstr($address, ',')) { // This strips out the real address from proxy output $addressArray = explode(',', $address); $address = $addressArray[0];