mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 20:38:52 +00:00
this hopefully solves the issue of wrongly converted ips completely. Sometimes there is really no ip...
git-svn-id: file:///svn/phpbb/trunk@7063 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
651737db76
commit
23577db488
1 changed files with 3 additions and 3 deletions
|
@ -304,15 +304,15 @@ function decode_ip($int_ip)
|
||||||
{
|
{
|
||||||
if (!$int_ip)
|
if (!$int_ip)
|
||||||
{
|
{
|
||||||
return '127.0.0.1';
|
return $int_ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
$hexipbang = explode('.', chunk_split($int_ip, 2, '.'));
|
$hexipbang = explode('.', chunk_split($int_ip, 2, '.'));
|
||||||
|
|
||||||
// Any mod changing the way ips are stored? Then we are not able to convert...
|
// Any mod changing the way ips are stored? Then we are not able to convert and enter the ip "as is" to not "destroy" anything...
|
||||||
if (sizeof($hexipbang) < 4)
|
if (sizeof($hexipbang) < 4)
|
||||||
{
|
{
|
||||||
return '127.0.0.1';
|
return $int_ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
return hexdec($hexipbang[0]) . '.' . hexdec($hexipbang[1]) . '.' . hexdec($hexipbang[2]) . '.' . hexdec($hexipbang[3]);
|
return hexdec($hexipbang[0]) . '.' . hexdec($hexipbang[1]) . '.' . hexdec($hexipbang[2]) . '.' . hexdec($hexipbang[3]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue