X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/6d4142df4e30e1f46cfa5b377bf2db0323e59479..ee351ea0e06b03d53e0e70fa5855f591640f47e7:/lib/functions.php?ds=sidebyside diff --git a/lib/functions.php b/lib/functions.php index 83fdaf1..aaa0daf 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -1121,6 +1121,8 @@ get_ip_list_http_forwarded() if (!empty ($_SERVER['HTTP_X_FORWARDED_FOR'])) { $l = explode (',', $_SERVER['HTTP_X_FORWARDED_FOR']); + if ($l === FALSE) + return array(); foreach ($l as $ip) array_push ($ip_list, preg_replace ('/\s+/', '', $ip)); } @@ -1130,7 +1132,10 @@ get_ip_list_http_forwarded() foreach ($l as $ip) { // Separate IP from port - $ip = explode (':', $ip)[0]; + $ipa = explode (':', $ip); + if ($ipa === FALSE) + continue; + $ip = $ipa[0]; array_push ($ip_list, preg_replace ('/\s+/', '', $ip)); } }