Ticket #7844: trackback.patch
| File trackback.patch, 636 bytes (added by , 18 years ago) |
|---|
-
wp-includes/comment.php
1310 1310 $options = array(); 1311 1311 $options['timeout'] = 4; 1312 1312 $options['body'] = array( 1313 'title' => urlencode($title),1314 'url' => urlencode(get_permalink($ID)),1315 'blog_name' => urlencode(get_option('blogname')),1316 'excerpt' => urlencode($excerpt)1313 'title' => $title, 1314 'url' => get_permalink($ID), 1315 'blog_name' => get_option('blogname'), 1316 'excerpt' => $excerpt 1317 1317 ); 1318 1318 1319 1319 $response = wp_remote_post($trackback_url, $options);