Переустановил по вашей инструкции на одном форуме...блока нет!!! Точно...
Дебаггер кричит на ошибку
Код: Выделить всё
Страница: index.php
Файл: /includes/functions.php
Строка: 5486 Undefined variable: forum_aryКод: Выделить всё
if($config['topic_featured'])
{
// Do not include those forums the user is not having read access to...
$forum_read_ary = $auth->acl_getf('!f_read');
foreach ($forum_read_ary as $forum_id => $not_allowed)
{
if ($not_allowed['f_read'])
{
$forum_ary[] = (int) $forum_id;
}
}
+ if(sizeof($forum_ary))
{
$forum_ary = array_unique($forum_ary);
$forum_sql = 'AND ' . $db->sql_in_set('f.forum_id', $forum_ary, true);
}
else
{
$forum_sql = '';
}
if($forum_id)
{
$sql_arr = array(
'SELECT' => 't.*, f.forum_id, f.forum_name',
'FROM' => array(
TOPICS_TABLE => 't',
FORUMS_TABLE => 'f'
