Make WordPress Core


Ignore:
Timestamp:
10/02/2008 12:32:21 AM (16 years ago)
Author:
ryan
Message:

Error checking for HTTP requests. Props jacobsantos. see #7793

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment.php

    r9039 r9051  
    13171317    );
    13181318
    1319     wp_remote_post($trackback_url, $options);
     1319    $response = wp_remote_post($trackback_url, $options);
     1320   
     1321    if ( is_wp_error( $response ) )
     1322        return;
    13201323
    13211324    $tb_url = addslashes( $trackback_url );
Note: See TracChangeset for help on using the changeset viewer.