Nevermind, found my problem - needed to call the function fetch_threadinfo. For the curious, final code:
PHP Code:
// Determine our thread id by feat name.
if (!empty($featname))
{
// We are searching by name rather than thread id. We'll check permissions later,
// for now just query up the first occurance of the featname.
$featthread = $DB_site->query_first("
SELECT feats.threadid AS threadid
FROM " . TABLE_PREFIX . "feats
LEFT JOIN " . TABLE_PREFIX . "thread AS thread ON(thread.threadid = feats.threadid)
WHERE thread.title = '" . addslashes($featname) . "'
");
$threadid = $featthread['threadid'];
// Fetch it
fetch_threadinfo(&$threadid);
}