[OK]を私はあなたのための簡単 な修正を持っている。
1。開くとこのファイルのコピーを作成します。
フォーラムのルートは、/ / vbenterprisetranslator_functions.php含まれています
2。このファイルで見つけた:
3。このコードの前に貼り付けます。
PHP Code:
function vbet_vb_exec_header_redirect($url)
{
global $vbulletin;
$url = create_full_url($url);
$url = str_replace('&', '&', $url); // prevent possible oddity
if (strpos($url, "\r\n") !== false)
{
trigger_error("Header may not contain more than a single header, new line detected.", E_USER_ERROR);
}
header("Location: $url", 0, 301);
if ($vbulletin->options['addheaders'] AND (SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi'))
{
header('Status: 301 Moved Permanently');
}
define('NOPMPOPUP', 1);
if (defined('NOSHUTDOWNFUNC'))
{
exec_shut_down();
}
exit;
}
4。ファイルを保存します。
5。開くとこのファイルのコピーを作成します。
フォーラムのルートは、/ / vbenterprisetranslator_functions.php含まれています
6。このファイルで見つけた:
PHP Code:
function vbet_redirectDoubleLang()
7。この関数で見つける:
PHP Code:
exec_header_redirect($url);
8。とで置き換える:
PHP Code:
vbet_vb_exec_header_redirect($url);
9。ファイルを保存し、それをテストします。
すでに行われて - 次のrelaseにも含まれます。