Escape {{, [[ and < in doc pages (not all wikitext, we still want headings, bullets...
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 9 Jun 2010 18:04:48 +0000 (18:04 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 9 Jun 2010 18:04:48 +0000 (18:04 +0000)
includes/installer/WebInstaller.php

index 95e1f81..547bf66 100644 (file)
@@ -1663,6 +1663,8 @@ abstract class WebInstaller_Document extends WebInstallerPage {
        }
 
        protected function formatTextFile( $text ) {
+               $text = str_replace( array( '<', '{{', '[[' ),
+                       array( '&lt;', '&#123;&#123;', '&#91;&#91;' ), $text );
                // replace numbering with [1], [2], etc with MW-style numbering
                $text = preg_replace( "/\r?\n(\r?\n)?\\[\\d+\\]/m", "\\1#", $text );
                // join word-wrapped lines into one