From 57b1ce7f335ae413f8c6113a188f4d219324a489 Mon Sep 17 00:00:00 2001 From: laf Date: Tue, 9 Jun 2015 15:04:07 +0100 Subject: [PATCH] Fix scrut bug --- includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index f634c4d60..b9baf7dbd 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -1213,7 +1213,7 @@ function hex_to_ip($hex) { } $return = substr($return, 0, -1); } else { - $return = $ip; + $return = $return; } return $return; }