I just installed and it was messin up my norm forums so I looked and found an error.
In plugins forumdisplay_query the gallery hook is wrong it should be
Code:
if ($foruminfo['gallery']=='1')
{
$displaythumbs = true;
}
if ($displaythumbs == true)
{
$hook_query_fields .= ", attachment.attachmentid AS attachmentid";
$hook_query_joins .= " LEFT JOIN " . TABLE_PREFIX . "attachment as attachment ON (attachment.postid = thread.firstpostid)";
}
Before it was
Code:
if ($foruminfo['gallery']=='1')
{
$displaythumbs = true;
}
if ($displaythumbs=true)
{
$hook_query_fields .= ", attachment.attachmentid AS attachmentid";
$hook_query_joins .= " LEFT JOIN " . TABLE_PREFIX . "attachment as attachment ON (attachment.postid = thread.firstpostid)";
}
and it was messing up the forums, works fine with this fix.