Index: trunk/phase3/includes/Parser.php |
— | — | @@ -485,7 +485,7 @@ |
486 | 486 | $inside = $p[4]; |
487 | 487 | } |
488 | 488 | |
489 | | - $marker = "$uniq_prefix-$element-" . sprintf('%08X', $n++) . '-QINU'; |
| 489 | + $marker = "$uniq_prefix-$element-" . sprintf('%08X', $n++) . "-QINU\x07"; |
490 | 490 | $stripped .= $marker; |
491 | 491 | |
492 | 492 | if ( $close === '/>' ) { |
— | — | @@ -4633,7 +4633,7 @@ |
4634 | 4634 | # now that we can be sure that no pseudo-sections are in the source, |
4635 | 4635 | # split it up by section |
4636 | 4636 | $uniq = preg_quote( $this->uniqPrefix(), '/' ); |
4637 | | - $comment = "(?:$uniq-!--.*?QINU)"; |
| 4637 | + $comment = "(?:$uniq-!--.*?QINU\x07)"; |
4638 | 4638 | $secs = preg_split( |
4639 | 4639 | "/ |
4640 | 4640 | ( |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -277,6 +277,7 @@ |
278 | 278 | * (bug 6965) Cannot include "Template:R" with {{R}} (magic word conflict) |
279 | 279 | * Padding parser functions now work with strings like '0' that evaluate to false |
280 | 280 | * (bug 10332) Title->userCan( 'edit' ) may return false positive |
| 281 | +* Fix bug with <nowiki> in front of links for wikis where linkPrefixExtension is true |
281 | 282 | |
282 | 283 | == API changes since 1.10 == |
283 | 284 | |