Index: trunk/phase3/maintenance/parserTests.txt |
— | — | @@ -1453,7 +1453,7 @@ |
1454 | 1454 | !!end |
1455 | 1455 | |
1456 | 1456 | !! test |
1457 | | -Link containing "#<" and "#>" % as hex sequences- these are valid section anchors |
| 1457 | +Link containing "#<" and "#>" % as a hex sequences- these are valid section anchors |
1458 | 1458 | Example for such a section: == < == |
1459 | 1459 | !! input |
1460 | 1460 | [[%23%3c]][[%23%3e]] |
— | — | @@ -1463,11 +1463,11 @@ |
1464 | 1464 | !! end |
1465 | 1465 | |
1466 | 1466 | !! test |
1467 | | -Link containing "<#" and ">#" as hex sequences |
| 1467 | +Link containing "<#" and ">#" as a hex sequences |
1468 | 1468 | !! input |
1469 | 1469 | [[%3c%23]][[%3e%23]] |
1470 | 1470 | !! result |
1471 | | -<p>[[%3c%23]]<a href="https://www.mediawiki.org/index.php?title=%3E&action=edit&redlink=1" class="new" title="> (page does not exist)">>#</a> |
| 1471 | +<p>[[%3c%23]][[%3e%23]] |
1472 | 1472 | </p> |
1473 | 1473 | !! end |
1474 | 1474 | |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -259,7 +259,7 @@ |
260 | 260 | * |
261 | 261 | * Problematic punctuation: |
262 | 262 | * []{}|# Are needed for link syntax, never enable these |
263 | | - * < Causes problems with HTML escaping, don't use |
| 263 | + * <> Causes problems with HTML escaping, don't use |
264 | 264 | * % Enabled by default, minor problems with path to query rewrite rules, see below |
265 | 265 | * + Enabled by default, but doesn't work with path to query rewrite rules, corrupted by apache |
266 | 266 | * ? Enabled by default, but doesn't work with path to PATH_INFO rewrites |
— | — | @@ -279,7 +279,7 @@ |
280 | 280 | * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but |
281 | 281 | * this breaks interlanguage links |
282 | 282 | */ |
283 | | -$wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+>"; |
| 283 | +$wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+"; |
284 | 284 | |
285 | 285 | |
286 | 286 | /** |