קאָררעקטעד. פֿאַר שנעל פאַרריכטן ביטע:
1. רעדאַגירן טעקע / ינקלועס / וובענטערפּריסעטראַנסלאַטאָר_פונקטיאָנס_בבקאָדע.הטמל
2. געפינען:
PHP Code:
if ($endShorted && $endShorted < $end) {
$end = $endShorted + 3;
$toParse = substr($title,$start,$end - $start).'[/langtitle]';
3. פאַרבייַטן דורך:
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]';
}