From c0238a6b765359d1ea01e39671d700d7049680af Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Sun, 13 Dec 2015 13:55:10 -0800 Subject: [PATCH] Remove wfGetIP(), deprecated since 1.19 No remaining usage: https://github.com/search?q=%40wikimedia+wfGetIP&type=Code&utf8=%E2%9C%93 Change-Id: I3b8f4b034e23a56f586993549cc5460b28bf6fa7 --- includes/GlobalFunctions.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 603d259dae..3ca4984e28 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -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. -- 2.20.1