米哈尔,
本次论坛块仍然错误百出。主题标题年底仍显示[/ langtitle],线程被显示在原来的海报语言。
例如:
主题文本应在用户观看的语言吗?
使用vBET出来今天(4.2.2)
米哈尔,
本次论坛块仍然错误百出。主题标题年底仍显示[/ langtitle],线程被显示在原来的海报语言。
例如:
主题文本应在用户观看的语言吗?
使用vBET出来今天(4.2.2)
我看到它,我知道的原因而不检查代码。是-这是我们的错误。贝特检查的标题,以解决在其他语言中的标题中的 '......' 哪个位置剪切 (修正错误: http://www.vbenterprisetranslator.co...r-problem.html)。我们错过帽子用户可以设置有'...'自己
看来,纠正一个错误,我们创建了一个又一个 - 对不起,达小姐。对此我们将采取的护理。请注意,它会只发生在有原来的其他语言的标题'...'在开始。在这里,我们将给速战速决。
不视为语言文字 - 这是不幸的是,我们的范围,在这一刻 - 请看到这里的解释: http://www.vbenterprisetranslator.co....html#post2735
纠正。为了速战速决,请:
1。编辑文件/ inclues / vbenterprisetranslator_functions_bbcode.html
2。查找:
3。取代:PHP Code:
if ($endShorted && $endShorted < $end) {
$end = $endShorted + 3;
$toParse = substr($title,$start,$end - $start).'[/langtitle]';
PHP Code:
if ($endShorted && $endShorted < $end) {
$nextStart = strpos($title, '[langtitle=', $endShorted);
if (!$nextStart || $nextStart > $end) {
$toParse = substr($title,$start,$end - $start);
} else {
$end = $endShorted + 3;
$toParse = substr($title,$start,$end - $start).'[/langtitle]';
}
不工作... ...这里是整个块
PHP Code:
if (false === $end) {
$endShorted = strpos($title, '...', $start);
if ($endShorted && $endShorted < $end) {
$nextStart = strpos($title, '[langtitle=', $endShorted);
if (!$nextStart || $nextStart > $end) {
$toParse = substr($title,$start,$end - $start);
} else {
$end = $endShorted + 3;
$toParse = substr($title,$start,$end - $start).'[/langtitle]';
}
} else {
break;
}
} else {
$end += 12;
}
你用错了地方... ...请撤消这些更改,并在适当的地方使用它。整个块应该是:
PHP Code:
if (!$toParse) {
$endShorted = strpos($title, '...', $start);
if ($endShorted && $endShorted < $end) {
$nextStart = strpos($title, '[langtitle=', $endShorted);
if (!$nextStart || $nextStart > $end) {
$toParse = substr($title,$start,$end - $start);
} else {
$end = $endShorted + 3;
$toParse = substr($title,$start,$end - $start).'[/langtitle]';
}
} else {
$toParse = substr($title,$start,$end - $start);
}
}
这是块之后你变了这一个。