Index: trunk/phase3/includes/installer/WebInstaller.php |
— | — | @@ -1663,6 +1663,8 @@ |
1664 | 1664 | } |
1665 | 1665 | |
1666 | 1666 | protected function formatTextFile( $text ) { |
| 1667 | + $text = str_replace( array( '<', '{{', '[[' ), |
| 1668 | + array( '<', '{{', '[[' ), $text ); |
1667 | 1669 | // replace numbering with [1], [2], etc with MW-style numbering |
1668 | 1670 | $text = preg_replace( "/\r?\n(\r?\n)?\\[\\d+\\]/m", "\\1#", $text ); |
1669 | 1671 | // join word-wrapped lines into one |