Try this
PHP Code:
$pollist = $DB_site->query("SELECT
thread.threadid AS thread_id,thread.title AS thread_title,thread.pollid AS thread_pollid,poll.pollid AS poll_pollid,
poll.active AS poll_active,poll.dateline AS poll_dateline,poll.public AS poll_public,user.userid, user.username
FROM
" . TABLE_PREFIX . "thread AS thread,
" . TABLE_PREFIX . "poll AS poll,
" . TABLE_PREFIX . "user AS user
LEFT JOIN " . TABLE_PREFIX . "deletionlog AS dlog_t ON (dlog_t.primaryid = thread.threadid AND dlog_t.type = 'thread')
LEFT JOIN " . TABLE_PREFIX . "deletionlog AS dlog_p ON (dlog_p.primaryid = poll.pollid AND dlog_p.type = 'poll')
WHERE thread.pollid = poll.pollid AND poll.active = 1 AND dlog_t.primaryid IS NULL AND dlog_p.primaryid IS NULL
ORDER BY poll.dateline DESC LIMIT 10"
);
while($pollist = $DB_site->fetch_array($showpollist))
{
eval('$activepolls = "' . fetch_template('pollist') . '";');
}
Then add $activepolls where you want the template to show, then in the template you can use the following calls $showpollist[thread_id], $showpollist[thread_title], $showpollist[thread_pollid], $showpollist[poll_pollid], $showpollist[poll_active]. $showpollist[poll_dateline], $showpollist[poll_public], $showpollist[userid], $showpollist[username].
Hope that helps.