• Hi folks,
    I was wondering if TrackBack pings were broken for URLs that POST to a URL with a query string? I looked at the code and saw this:
    $http_request = ‘POST ‘ . $trackback_url[‘path’] . $trackback_url[‘query’] . ” HTTP/1.0\r\n”;
    I think it should be this:
    $http_request = ‘POST ‘ . $trackback_url[‘path’] . “?” . $trackback_url[‘query’] . ” HTTP/1.0\r\n”;
    note the addition of “?” .
    I was wondering if this was an intentional omission or if this was a bug? I haven’t checked CVS yet to see if it’s been fixed.
    Thanks,
    Sujal

Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Trackback pinging broken?’ is closed to new replies.