Index: trunk/phase3/languages/LanguageConverter.php |
— | — | @@ -532,6 +532,8 @@ |
533 | 533 | if( $this->mDoContentConvert ) |
534 | 534 | // Bug 19620: should convert a string immediately after a new rule added. |
535 | 535 | $text .= $this->autoConvert( $marked[0], $plang ); |
| 536 | + else |
| 537 | + $text .= $marked[0]; |
536 | 538 | |
537 | 539 | if ( array_key_exists( 1, $marked ) ) { |
538 | 540 | $crule = new ConverterRule($marked[1], $this); |
— | — | @@ -546,7 +548,6 @@ |
547 | 549 | |
548 | 550 | // Remove the last delimiter (wasn't real) |
549 | 551 | $text = substr( $text, 0, -strlen( $this->mMarkup['end'] ) ); |
550 | | - |
551 | 552 | return $text; |
552 | 553 | } |
553 | 554 | |