From 90d2083b113dc0196ce3453442c757044254bd42 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 16 Jul 2006 20:58:40 +0000 Subject: [PATCH] normalize case --- includes/IP.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/IP.php b/includes/IP.php index df36e6b81b..e8b5b2e53f 100644 --- a/includes/IP.php +++ b/includes/IP.php @@ -39,8 +39,8 @@ class IP { * i.e. not RFC 1918 or similar * Comes from ProxyTools.php */ - public static function IsPublic( $ip ) { - $n = IP::ToUnsigned( $ip ); + public static function isPublic( $ip ) { + $n = IP::toUnsigned( $ip ); if ( !$n ) { return false; } -- 2.20.1