mirror of
https://github.com/Mibew/mibew.git
synced 2025-01-30 21:10:29 +03:00
Fix a typo
This commit is contained in:
parent
d8a63bc2cd
commit
35bbb22c56
@ -580,7 +580,7 @@ function get_remote_host()
|
||||
$has_proxy = isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
||||
&& $_SERVER['HTTP_X_FORWARDED_FOR'] != $_SERVER['REMOTE_ADDR'];
|
||||
if ($has_proxy) {
|
||||
$ips = explode(' ', $_SERVER['HTTP_X_FORWARDED_FOR'], 2);
|
||||
$ips = explode(', ', $_SERVER['HTTP_X_FORWARDED_FOR'], 2);
|
||||
$ext_addr = (count($ips) > 1)
|
||||
? $ips[0] . ' (' . $_SERVER['HTTP_X_FORWARDED_FOR'] . ')'
|
||||
: $ips[0];
|
||||
|
Loading…
Reference in New Issue
Block a user