From 32013f8abce82f2195692fb89e16a82bfff30239 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Mon, 31 Jan 2005 10:16:07 +0000 Subject: [PATCH] Don't do path thing for trackback URIs git-svn-id: https://develop.svn.wordpress.org/trunk@2168 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index e170c0b2aa..6cb02f6663 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -303,7 +303,7 @@ function comment_time( $d = '' ) { function get_trackback_url() { global $id; - $tb_url = get_settings('siteurl') . '/wp-trackback.php/' . $id; + $tb_url = get_settings('siteurl') . '/wp-trackback.php?p=' . $id; if ( '' != get_settings('permalink_structure') ) $tb_url = trailingslashit(get_permalink()) . 'trackback/';