MyBB Community Forums

Full Version: Function for checking poll existance?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I was just wondering if there is a function to tell if a thread has a poll (via TID)? Cheers in advance.
no there isnt =P

but you can add this function into ./inc/functions.php
PHP Code:
function check_poll($tid)
{
    global 
$db$mybb;
    
$query $db->simple_select(TABLE_PREFIX."threads""poll""tid='".$tid."'");
    
$poll $db->fetch_field($query"poll");
    if(
$poll != 0)
    {
        
// POLL ID
        
return $poll;
    }


Usage : check_poll($tid) ; if the thread has a poll, it returns the PollID.
Cheers Big Grin
Reference URL's