I installed the CVS version of trackback module and it works well. But I got a problem: how can I know I got a new trackback? Is it possible to add a block or a seperate page to show the recent incoming trackbacks? Thanks for your help!

Comments

ankur’s picture

A "recent trackbacks" page or "recent trackbacks" block sounds like a useful feature for sites that have a lot of inter-site dialogue going on between trackbacks. Anyone else interested in this feature...? Leaving this issue open for more input...

-Ankur

kzeng’s picture

Thanks for your message. I finally wrote a simple block to achieve this purpose.

$result = db_query_range('SELECT * FROM {trackback_received} ORDER BY created DESC', 0, 10);

 while ($trackback = db_fetch_object($result)) {
      echo "<li> <a href='node/ $trackback->nid'> $trackback->subject </a></li>";
    }
ankur’s picture

junyor’s picture

Status: Closed (fixed) » Active

Yes, I'm interested in this. I use notify.module and I've been missing trackback updates. Perhaps trackback.module could take advantage of the new subscription.module[1]?

[1] http://drupal.org/node/29868