تصحيحها. الرجاء حل سريع ل:
1. تحرير الملف / inclues / vbenterprisetranslator_functions_bbcode.html
2. العثور على :
3. REPLACE من قبل :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]';
}




الرد مع إقتباس
