R405
При нажатии Администрирование:
Конструктор · История форума · Изменить · Права доступа · Удалить
Код:
Fatal error: DB Error [includes/functions.php(686)] in /var/www/game-hub.ru/html/includes/db/mysql.php on line 803
line 686
PHP:
foreach (DB()->fetch_rowset($sql) as $row)
Весь кусок
PHP:
case 'forum_tpl':
$sql = "SELECT tpl_id, tpl_name FROM ". BB_TOPIC_TPL ." ORDER BY tpl_name";
$select_ary[$first_opt] = 0;
foreach (DB()->fetch_rowset($sql) as $row)
{
$select_ary[$row['tpl_name']] = $row['tpl_id'];
}
$select_name = 'forum_tpl_select';
break;
Помогите...Заранее спасибо!
----------------
Решение
CREATE TABLE `bb_topic_tpl` (
`tpl_id` smallint(6) NOT NULL auto_increment,
`tpl_name` varchar(60) NOT NULL default '',
`tpl_src_form` text NOT NULL,
`tpl_src_title` text NOT NULL,
`tpl_src_msg` text NOT NULL,
`tpl_comment` text NOT NULL,
`tpl_rules_post_id` int(10) unsigned NOT NULL default '0',
`tpl_last_edit_tm` int(11) NOT NULL default '0',
`tpl_last_edit_by` int(11) NOT NULL default '0',
PRIMARY KEY (`tpl_id`),
UNIQUE KEY `tpl_name` (`tpl_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;