Ok... I don't see where either of these queries would make a difference, but then again I don't see why it would be taking that one so long, so it's worth a shot, right?
Try this one:
PHP Code:
$pollinfo=$DB_site->query_first("SELECT thread.pollid, thread.open, poll.pollid, poll.question, poll.dateline, poll.options, poll.votes, poll.active, poll.numberoptions, poll.timeout, poll.multiple, poll.voters FROM thread LEFT JOIN poll USING (pollid) WHERE thread.forumid=$pollsforum ORDER BY thread.pollid DESC LIMIT 1");{
And if that doesn't help maybe this one:
PHP Code:
$pollinfo=$DB_site->query_first("SELECT thread.pollid, thread.open, poll.pollid, poll.question, poll.dateline, poll.options, poll.votes, poll.active, poll.numberoptions, poll.timeout, poll.multiple, poll.voters FROM thread LEFT JOIN poll ON (thread.pollid=poll.pollid) WHERE thread.forumid=$pollsforum ORDER BY thread.pollid DESC LIMIT 1");{