Quote:
Originally Posted by the nail geek
tormodg: Whenever an rmpty page is spat out, my experience tells me 100% of the time its becasue of a missing template. Depending on if the forum is set as an article forum, the eval will be GEEK_SHOWTHREAD_ARTICLE (I think that was the name off the top of my head). If not, then it uses SHOWTHREAD. This is seen at the very last couple lines of the showthread.php file.
|
Here is what I have in the last lines of my showthread.php. This does NOT work. The template is in my template list.
Code:
if (in_array($forum['forumid'],$geek_article_forums)){
eval('$HTML = "' . fetch_template('GEEK_SHOWTHREAD_ARTICLE') . '");');
}else{
eval('$HTML = "' . fetch_template('SHOWTHREAD') . '";');
}
print_portal_output($home, $HTML);