Index: trunk/phase3/maintenance/parserTests.txt |
— | — | @@ -1451,7 +1451,7 @@ |
1452 | 1452 | !!end |
1453 | 1453 | |
1454 | 1454 | !! test |
1455 | | -Link containing "#<" and "#>" % as a hex sequences- these are valid section anchors |
| 1455 | +Link containing "#<" and "#>" % as hex sequences- these are valid section anchors |
1456 | 1456 | Example for such a section: == < == |
1457 | 1457 | !! input |
1458 | 1458 | [[%23%3c]][[%23%3e]] |
— | — | @@ -1461,11 +1461,11 @@ |
1462 | 1462 | !! end |
1463 | 1463 | |
1464 | 1464 | !! test |
1465 | | -Link containing "<#" and ">#" as a hex sequences |
| 1465 | +Link containing "<#" and ">#" as hex sequences |
1466 | 1466 | !! input |
1467 | 1467 | [[%3c%23]][[%3e%23]] |
1468 | 1468 | !! result |
1469 | | -<p>[[%3c%23]][[%3e%23]] |
| 1469 | +<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> |
1470 | 1470 | </p> |
1471 | 1471 | !! end |
1472 | 1472 | |
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 | /** |