Fast og verður með í næstu útgáfu. Fyrir fljótur festa vinsamlegast:
1. Breyta / Innheldur / vbenterprisetranslator_functions_hooks.php
2. Finna:
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. Skipta um:
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);
}
}