Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -1287,8 +1287,10 @@ |
1288 | 1288 | */ |
1289 | 1289 | function wfEscapeWikiText( $text ) { |
1290 | 1290 | $text = str_replace( |
1291 | | - array( '[', '|', ']', '\'', 'ISBN ', 'RFC ', '://', "\n=", '{{' ), # }} |
1292 | | - array( '[', '|', ']', ''', 'ISBN ', 'RFC ', '://', "\n=", '{{' ), |
| 1291 | + array( '[', '|', ']', '\'', 'ISBN ', |
| 1292 | + 'RFC ', '://', "\n=", '{{', '}}' ), |
| 1293 | + array( '[', '|', ']', ''', 'ISBN ', |
| 1294 | + 'RFC ', '://', "\n=", '{{', '}}' ), |
1293 | 1295 | htmlspecialchars( $text ) |
1294 | 1296 | ); |
1295 | 1297 | return $text; |