Reports/report queue

This commit is contained in:
Savetheinternet 2011-02-20 17:19:57 +11:00
parent 8e1ef6558b
commit ce18d43bcd
6 changed files with 167 additions and 10 deletions

View file

@ -828,8 +828,8 @@
) == '127.0.0.2';
}
function ReverseIPOctets($inputip) {
$ipoc = explode('.', $inputip);
function ReverseIPOctets($ip) {
$ipoc = explode('.', $ip);
return $ipoc[3] . '.' . $ipoc[2] . '.' . $ipoc[1] . '.' . $ipoc[0];
}