need this single post

Do you need this?
Code:
if($vbulletin->options['g_answer_forum_show_forumdisplay']){

// Set cutoff date if once is applied
$af_cutoff = $vbulletin->options['answers_forums_cutoff_date'];

if($foruminfo['g_answer_forum'] AND THIS_SCRIPT == 'forumdisplay' AND ($thread[dateline] > $af_cutoff OR $thread['g_answer_forum_answer'] != '0')){
    
        if(!$thread['g_answer_forum_answer']){
	
             $thread['movedprefix'] = '<img src="/forum/images/icons/exclamation.png" border="0" title="Not Answered">' .  $thread['movedprefix'];

        } else {

             $thread['movedprefix'] = '<img src="/forum/images/icons/accept.png" border="0" title="Answered">' . $thread['movedprefix'];
            
        }
    
}

}
 
Back
Top