Hi there,
I tried to install this MOD and everything went fine. Only this part here :
PHP Code:
2. Find:
$thread['hiddencount']++;
}
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
looks different for me. My forumdisplay.php looks like this :
PHP Code:
$thread['hiddencount']++;
}
$show['moderated'] = ($thread['hiddencount'] > 0 AND can_moderate($forumid, 'canmoderateposts')) ? true : false;
$show['deletedthread'] = ($thread['deletedcount'] > 0 AND $canseedelnotice) ? true : false;
}
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
So I changed it to :
PHP Code:
$thread['hiddencount']++;
}
$show['moderated'] = ($thread['hiddencount'] > 0 AND can_moderate($forumid, 'canmoderateposts')) ? true : false;
$show['deletedthread'] = ($thread['deletedcount'] > 0 AND $canseedelnotice) ? true : false;
//############################Gallery-Modification###########################
if ($gallery == true)
{
eval('$threadbit .= "' . fetch_template('gallery_threadbit') . '";');
}
else
{
eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
//############################End Gallery-Modification########################
}
// eval('$threadbit .= "' . fetch_template('threadbit') . '";');
}
The Gallery appears in my forum, the link in the nav bar works like it should but when I try to post a picture, I only see the standard comment field, like in a normal forum.
Any Idea ? BTW: I am running vB 3.6