Код: Выделить всё
Fatal error: The file ./styles/art_colorizeit/template/bbcode.html is missing. in *******/includes/bbcode.php on line 281Можно просто скопировать с просильвера в папку со стилем этот файл, но я хочу разобраться и все сделать по уму.
Вот строчки с bbcode.php
Код: Выделить всё
if (!@file_exists($this->template_filename))
{
if (isset($user->theme['template_inherits_id']) && $user->theme['template_inherits_id'])
{
$this->template_filename = $phpbb_root_path . 'styles/' . $user->theme['template_inherit_path'] . '/template/bbcode.html';
if (!@file_exists($this->template_filename))
{
trigger_error('The file ' . $this->template_filename . ' is missing.', E_USER_ERROR);
}
}
else
{
trigger_error('The file ' . $this->template_filename . ' is missing.', E_USER_ERROR);
}
}
}
$bbcode_ids = $rowset = $sql = array();
$bitfield = new bitfield($this->bbcode_bitfield);
Как это можно починить?

