* Fix comment
authorAaron Schulz <aaron@users.mediawiki.org>
Sun, 2 Nov 2008 18:35:58 +0000 (18:35 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sun, 2 Nov 2008 18:35:58 +0000 (18:35 +0000)
* Rename HexToIP -> HexToQuad

includes/IP.php
includes/api/ApiQueryBlocks.php

index b1d94fd..e5973c2 100644 (file)
@@ -152,7 +152,7 @@ class IP {
        }
        
        /**
-        * Given an unsigned integer, returns an IPv6 address in octet notation
+        * Given a hexadecimal number, returns to an IPv6 address in octet notation
         * @param $ip string hex IP
         * @return string
         */
@@ -174,7 +174,7 @@ class IP {
         * @param $ip string Hex IP
         * @return string
         */ 
-       public static function hexToIP( $ip ) {
+       public static function hexToQuad( $ip ) {
                // Converts a hexadecimal IP to nnn.nnn.nnn.nnn format
                $dec = wfBaseConvert( $ip, 16, 10 );
                $parts[3] = $dec % 256;
index c3b46a6..2cb40ac 100644 (file)
@@ -148,8 +148,8 @@ class ApiQueryBlocks extends ApiQueryBase {
                                $block['reason'] = $row->ipb_reason;
                        if($fld_range)
                        {
-                               $block['rangestart'] = IP::hexToIP($row->ipb_range_start);
-                               $block['rangeend'] = IP::hexToIP($row->ipb_range_end);
+                               $block['rangestart'] = IP::hexToQuad($row->ipb_range_start);
+                               $block['rangeend'] = IP::hexToQuad($row->ipb_range_end);
                        }
                        if($fld_flags)
                        {