Quote:
then add this new function to the file:
|
i not understand. are you one example to show?
editing file includes/functions_forumlist.php change ok
PHP Code:
if (THIS_SCRIPT == 'index' AND $forum['subforumcolumns'] != 1 AND ($subsonly OR $depth < MAXFORUMDEPTH))
{
$childforumbits = construct_forum_columns($forum['forumid'], $forum['subforumcolumns']);
}
else if ($subsonly)
{
$childforumbits = construct_forum_bit($forum['forumid'], 1, $subsonly);
}
else if ($depth < MAXFORUMDEPTH)
{
$childforumbits = construct_forum_bit($forum['forumid'], $depth, $subsonly);
}
else
{
$childforumbits = '';
}
but where add this new function to the file?
functions_forumlist.php help please?
where to set admin cp ?
PHP Code:
// ###################### Start construct_forum_columns #######################
function construct_forum_columns($parentid, $columncount)