mero
Открываешь файл post.php и находишь примерно на 332 строке кусок кода:
CODE: $title_page = $exbb['boardname'].' :: '.$lang['Topic_created'];
$ok_title = $lang['Added'];
$url1 = '<li><a href="'.$relocurl.'">'.$lang['To_newtopic'].'</a>';
$url2 = '<li><a href="forums.php?forum='.$inforum.'">'.$lang['Return_in_forum'].'</a>';
$url3 = '<li><a href="index.php">'.$lang['Forums_return'].'</a>';
include('./templates/'.$exbb['default_style'].'all_header.tpl');
include('./templates/'.$exbb['default_style'].'postok.tpl');
include('./templates/'.$exbb['default_style'].'footer.tpl');
Заменяешь его на код:
CODE:header("location: $relocurl");
Дальше ищешь примерно на строке 662 кусок кода:
CODE: $title_page = $exbb['boardname'] .' :: '.$lang['Sent_in'].' '.$forumname;
$ok_title = $lang['Added'];
$url1 = '<li><a href="'.$relocurl.'">'.$lang['Return_in_topic'].'</a>';
$url2 = '<li><a href="forums.php?forum='.$inforum.'">'.$lang['Return_in_forum'].'</a>';
$url3 = '<li><a href="index.php">'.$lang['Forums_return'].'</a>';
include('./templates/'.$exbb['default_style'].'all_header.tpl');
include('./templates/'.$exbb['default_style'].'postok.tpl');
include('./templates/'.$exbb['default_style'].'footer.tpl');
Заменяешь его на код:
CODE:header("location: $relocurl");