Как вывести список тем форума на страницу форума phpBB 3
DesignerMix
Код: Выделить всё
[phpBB Debug] PHP Notice: in file [ROOT]/ext/vse/topicpreview/core/topic_preview.php on line 260: Undefined index: topic_first_post_id
Код: Выделить всё
[phpBB Debug] PHP Notice: in file [ROOT]/ext/vse/topicpreview/core/topic_preview.php on line 260: Undefined index: topic_last_post_id
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5133: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3843)
barkovskii
/ext/ppk/bb3topics/core/bb3topics.php
заменить все
Код: Выделить всё
$sql_select = 't.topic_title, t.forum_id, t.topic_id, t.topic_time';
Код: Выделить всё
$sql_select = 't.topic_title, t.forum_id, t.topic_id, t.topic_time, t.topic_first_post_id, t.topic_last_post_id';
Код: Выделить всё
$sql_select = 't.topic_title, t.forum_id, t.topic_id, t.poll_title, t.topic_time';
Код: Выделить всё
$sql_select = 't.topic_title, t.forum_id, t.topic_id, t.poll_title, t.topic_time, t.topic_first_post_id, t.topic_last_post_id';
PPK
Oleg
PPK
/ext/ppk/bb3topics/event/listener.php
перед
Код: Выделить всё
'core.index_modify_page_title' => 'display_bb3t_index',
Код: Выделить всё
'core.page_header' => 'display_bb3t_portal',
Код: Выделить всё
public function display_bb3t_index()
Код: Выделить всё
public function display_bb3t_portal()
{
if(strpos('portal', basename($this->request->server('REQUEST_URI')))===0)
{
$this->bb3t_functions->display_bb3topics();
}
}
PPK
Oleg
southklad
PPK
southklad