Index: trunk/phase3/languages/LanguageConverter.php |
— | — | @@ -563,9 +563,9 @@ |
564 | 564 | $lastbegin = strrpos( $text, $this->mMarkup['begin'] ); |
565 | 565 | |
566 | 566 | // if $text contains no begin markup, |
567 | | - // append $text restore end markup to $converted |
| 567 | + // append $text to $converted and restore end markup |
568 | 568 | if( $firstbegin === false ) { |
569 | | - $converted .= $text; |
| 569 | + $converted .= $this->autoConvert( $text, $plang ); |
570 | 570 | $converted .= $this->mMarkup['end']; |
571 | 571 | continue; |
572 | 572 | } |