From 588b6a80cd088fc83823d42b34f00974609ad4f7 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Fri, 14 Jul 2006 17:05:00 +0000 Subject: [PATCH] missed one --- includes/SpecialIpblocklist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialIpblocklist.php b/includes/SpecialIpblocklist.php index 4ad265c2c8..6df7f038b7 100644 --- a/includes/SpecialIpblocklist.php +++ b/includes/SpecialIpblocklist.php @@ -171,7 +171,7 @@ class IPUnblockForm { // No extra conditions } elseif ( substr( $this->ip, 0, 1 ) == '#' ) { $conds['ipb_id'] = substr( $this->ip, 1 ); - } elseif ( IP::ToUnsigned( $this->ip ) !== false ) { + } elseif ( IP::toUnsigned( $this->ip ) !== false ) { $conds['ipb_address'] = $this->ip; $conds['ipb_auto'] = 0; } elseif( preg_match( "/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\\/(\\d{1,2})$/", $this->ip, $matches ) ) { -- 2.20.1