Changeset 3959

Show
Ignore:
Timestamp:
07/04/06 21:40:41 (3 years ago)
Author:
ryan
Message:

Update RBL site and turn open proxy check off by default. Props Nazgul. fixes #2821

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.0/wp-admin/upgrade-schema.php

    r3813 r3959  
    212212    add_option('blacklist_keys'); 
    213213    add_option('comment_registration', 0); 
    214     add_option('open_proxy_check', 1); 
     214    add_option('open_proxy_check', 0); 
    215215    add_option('rss_language', 'en'); 
    216216    add_option('html_type', 'text/html'); 
  • branches/2.0/wp-includes/functions-post.php

    r3895 r3959  
    685685    if ( get_option('open_proxy_check') && isset($ipnum) ) { 
    686686        $rev_ip = implode( '.', array_reverse( explode( '.', $ipnum ) ) ); 
    687         $lookup = $rev_ip . '.opm.blitzed.org.'; 
     687        $lookup = $rev_ip . '.sbl-xbl.spamhaus.org.'; 
    688688        if ( $lookup != gethostbyname( $lookup ) ) 
    689689            return true;