Список разделов › phpBBex 1.x (поддерживается) › Поддержка 1.x
osvirk:Нужно вообще без разделов, только одни темы и сразу на главной
Find
Tip: This may be a partial find and not the whole line.
Code:Select all
$view_topic_url_params = "f=$u_forum_id&t=$result_topic_id" . (($u_hilit) ? "&hilit=$u_hilit" : '');
Replace with
Tip: Replace the preceding line(s) to find with the following lines.
Code:Select all
$view_topic_url_params = ((!isset($config['phpbbasic_forumid']) || !$config['phpbbasic_forumid']) ? "f=$u_forum_id&" : '') . "t=$result_topic_id" . (($u_hilit) ? "&hilit=$u_hilit" : '');
Find
Tip: This may be a partial find and not the whole line.
Code:Select all
FROM ' . FORUMS_TABLE . '
Replace with
Tip: Replace the preceding line(s) to find with the following lines.
Code:Select all
FROM ' . FORUMS_TABLE . ((isset($config['phpbbasic_forumid']) && $config['phpbbasic_forumid']) ? ' WHERE forum_id = ' . (int) $config['phpbbasic_forumid'] . ' OR parent_id = ' . (int)$config['phpbbasic_forumid'] : '') .
osvirk:поисковая строка встречается 6 раз, её нужно менять 6 раз?
Строка 1
Строка 2