1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 11:20:25 +02:00

BC Forum topic header fix.

This commit is contained in:
Cameron
2017-12-17 09:14:27 -08:00
parent 0c1bbbd5c8
commit ae4c58c8fb

View File

@@ -527,9 +527,13 @@ if(is_array($subList) && isset($subList[$forumInfo['forum_parent']][$forumId]))
$reg_threads++;
}
if($reg_threads === 1 && (THEME_LEGACY === true && $reg_threads === 1 && $stuck === true && $unstuck !== true)) // Removed as not needed in new template. && !$unstuck && $stuck
if($reg_threads === 1) // Removed as not needed in new template. && !$unstuck && $stuck
{
if(!empty($FORUM_NORMAL_ROW))
if(THEME_LEGACY === true && ($stuck === false || $unstuck === true))
{
// do nothing.
}
elseif(!empty($FORUM_NORMAL_ROW))
{
$forum_view_forum .= $FORUM_NORMAL_ROW;
}