Feste und wird in der nächsten Version enthalten sein. Für schnelle Lösung finden:
1. Bearbeiten / Includes / vbenterprisetranslator_functions_hooks.php
2. Suche:
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. Ersetzen durch:
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);
}
}