Make WordPress Core

Ticket #20222: 20222-2.patch

File 20222-2.patch, 644 bytes (added by kurtpayne, 13 years ago)

Alternate patch

  • wp-includes/class-http.php

     
    13431343
    13441344                $home = parse_url( get_option('siteurl') );
    13451345
    1346                 if ( $check['host'] == 'localhost' || $check['host'] == $home['host'] )
    1347                         return false;
     1346                if ( $check['host'] == 'localhost' || $check['host'] == $home['host'] ) {
     1347                        $func = apply_filters( 'proxy_local_urls_callback' , '__return_false' );
     1348                        $ret = call_user_func( $func, $uri );
     1349                        return $ret;
     1350                }
    13481351
    13491352                if ( !defined('WP_PROXY_BYPASS_HOSTS') )
    13501353                        return true;