From 10ef81bf85ad0a4bad0d204838e14c99ca2526f7 Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Mon, 6 Jan 2020 14:32:30 -0500 Subject: Update jetpack 8.0 Signed-off-by: Anthony G. Basile --- plugins/jetpack/modules/protect/shared-functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/jetpack/modules/protect/shared-functions.php') diff --git a/plugins/jetpack/modules/protect/shared-functions.php b/plugins/jetpack/modules/protect/shared-functions.php index 322901d8..9091c0be 100644 --- a/plugins/jetpack/modules/protect/shared-functions.php +++ b/plugins/jetpack/modules/protect/shared-functions.php @@ -201,7 +201,7 @@ function jetpack_protect_get_ip() { */ function jetpack_clean_ip( $ip ) { - // Some misconfigured servers give back extra info, which comes after "unless" + // Some misconfigured servers give back extra info, which comes after "unless". $ips = explode( ' unless ', $ip ); $ip = $ips[0]; @@ -211,8 +211,8 @@ function jetpack_clean_ip( $ip ) { $ip = $matches[1]; } - if ( function_exists( 'parse_url' ) ) { - $parsed_url = parse_url( $ip ); + if ( function_exists( 'wp_parse_url' ) ) { + $parsed_url = wp_parse_url( $ip ); if ( isset( $parsed_url['host'] ) ) { $ip = $parsed_url['host']; -- cgit v1.2.3-65-gdbad