Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

trackback_load

Definition

trackback_load($trid)
contributions/trackback/trackback.module, line 384

Code

<?php
function trackback_load($trid) {
  return db_fetch_object(db_query('SELECT * FROM {trackback_received} WHERE trid=%d', $trid));
}
?>