Por favor, editar o arquivo / Includes / vbenterprisetranslator_functions.php:
1. Pesquisar:
PHP Code:
if ($vbulletin->options['vbenterprisetranslator_translationlinkstype']) {
$baseUri = $vbulletin->options['bburl'];
$output = vbet_replaceFirst('<head>','<head><base href="'.$baseUri.'/" />',$output);
if (defined('VBSEO_BASEDEPTH') && VBSEO_BASEDEPTH && defined('VBSEO_PREPROCESSED')) {
$output = vbet_replaceFirst('<!--[if IE]></base><![endif]-->','<!--[if IE]></base><![endif]--><base href="'.$baseUri.'/" />',$output);
}
}
2. Substituir por:
PHP Code:
if ($vbulletin->options['vbenterprisetranslator_translationlinkstype']) {
$baseUri = $vbulletin->options['bburl'];
$what = '<base href="'.$baseUri.'/'.$language.'/"';
$toWhat = '<base href="'.$baseUri.'/"';
$position = strpos($output, $what);
if ($position === false) {
$output = vbet_replaceFirst('<head>','<head>'.$toWhat.' />',$output);
} else {
$output = substr_replace($output, $toWhat, $position, strlen($what));
}
}
Isto será incluído no próximo lançamento.
Por favor, confirme fez questão resolvida neste momento (manter também as últimas mudanças)