http://www.dcheeseman.com/blog/post/barny-frank-knows-his-public

I've got automatic url renaming implemented and the trackbacks point to trackback urls?

Example from above page:
http://www.dcheeseman.com/blog/trackback/60

Comments

mcurry’s picture

Would this work?
In the file trackback.ping.inc, function _trackback_ping, lines 202-206,

    $params = array(
      'title' => $node->title,
      'excerpt' => truncate_utf8(trim(strip_tags($excerpt)), 255),
      'blog_name' => variable_get('site_name', ''),
      'url' => url('node/'. $node->nid, array('absolute' => TRUE))
    );

change:

    'url' => url('node/'. $node->nid, array('absolute' => TRUE))

to:

     'url' => url(drupal_get_path_alias('node/'. $node->nid), array('absolute' => TRUE))

If so, this should probably be enabled by an admin setting (some may disagree with using aliases, as the alias may change, thus breaking old trackbacks).

I think this is really a feature request and not a bug report, though.

phpsharma’s picture

Yes.. This works good for me...

WashingtonIsBroke’s picture

StatusFileSize
new74.94 KB
new65.37 KB

Didn't work for me.