From: Brion Vibber Date: Tue, 13 Mar 2007 18:03:47 +0000 (+0000) Subject: this isn't java... you need to say $this-> and self:: explicitly X-Git-Tag: 1.31.0-rc.0~53776 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=761bfca76a4f6a8e16db3e9ec8424e8b480c0365;p=lhc%2Fweb%2Fwiklou.git this isn't java... you need to say $this-> and self:: explicitly --- diff --git a/includes/IP.php b/includes/IP.php index 599482c83f..b065a65b40 100644 --- a/includes/IP.php +++ b/includes/IP.php @@ -312,7 +312,7 @@ class IP { public static function toUnsigned( $ip ) { // Use IPv6 functions if needed if ( self::isIPv6( $ip ) ) { - return toUnsigned6( $ip ); + return self::toUnsigned6( $ip ); } if ( $ip == '255.255.255.255' ) { $n = -1;