Remove wfGetIP(), deprecated since 1.19
authorOri Livneh <ori@wikimedia.org>
Sun, 13 Dec 2015 21:55:10 +0000 (13:55 -0800)
committerReedy <reedy@wikimedia.org>
Sun, 13 Dec 2015 22:05:24 +0000 (22:05 +0000)
No remaining usage:
https://github.com/search?q=%40wikimedia+wfGetIP&type=Code&utf8=%E2%9C%93

Change-Id: I3b8f4b034e23a56f586993549cc5460b28bf6fa7

includes/GlobalFunctions.php

index 603d259..3ca4984 100644 (file)
@@ -4093,19 +4093,6 @@ function wfIsInfinity( $str ) {
        return in_array( $str, $infinityValues );
 }
 
-/**
- * Work out the IP address based on various globals
- * For trusted proxies, use the XFF client IP (first of the chain)
- *
- * @deprecated since 1.19; call $wgRequest->getIP() directly.
- * @return string
- */
-function wfGetIP() {
-       wfDeprecated( __METHOD__, '1.19' );
-       global $wgRequest;
-       return $wgRequest->getIP();
-}
-
 /**
  * Checks if an IP is a trusted proxy provider.
  * Useful to tell if X-Forwarded-For data is possibly bogus.