Seasta agus cuirfear san áireamh sa scaoileadh chugainn. Chun shocrú mear le do thoil:
1. Edit / N-áirítear / vbenterprisetranslator_functions_hooks.php
2. Aimsigh:
Code:
$threadrow = verify_id('thread', $_GET['t'], 1, 1);
$threadurl = $vbulletin->options['vbenterprisetranslator_forumdir'].'/'.vbseo_thread_url_row($threadrow, $_GET['page'] ? $_GET['page'] : 1);
if ($threadrow && $threadurl != $_SERVER['VBSEO_URI']) {
exec_header_redirect($threadurl);
}
3. Ionadaigh ag:
Code:
$threadrow = verify_id('thread', $_GET['t'], false, 1);
if ($threadrow) {
$threadurl = $vbulletin->options['vbenterprisetranslator_forumdir'].'/'.vbseo_thread_url_row($threadrow, $_GET['page'] ? $_GET['page'] : 1);
if ($threadrow && $threadurl != $_SERVER['VBSEO_URI']) {
exec_header_redirect($threadurl);
}
}