Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -3463,11 +3463,6 @@ |
3464 | 3464 | $wgAllowDisplayTitle = true; |
3465 | 3465 | |
3466 | 3466 | /** |
3467 | | - * for consistency, restrict DISPLAYTITLE to titles that normalize to the same canonical DB key |
3468 | | - */ |
3469 | | -$wgRestrictDisplayTitle = true; |
3470 | | - |
3471 | | -/** |
3472 | 3467 | * Array of usernames which may not be registered or logged in from |
3473 | 3468 | * Maintenance scripts can still use these |
3474 | 3469 | */ |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -26,12 +26,15 @@ |
27 | 27 | * Added $wgNoFollowDomainExceptions to allow exempting particular domain names |
28 | 28 | from rel="nofollow" on external links |
29 | 29 | * (bug 12970) Brought back $wgUseImageResize. |
30 | | -* Added $wgRedirectOnLogin to allow specifying a specifc page to redirect users |
31 | | - to upon logging in (ex: "Main Page") |
| 30 | +* Added $wgRedirectOnLogin to allow specifying a page to redirect users to upon |
| 31 | + logging in (for example, "Main Page") |
32 | 32 | * Add $wgExportFromNamespaces for enabling/disabling the "export all from |
33 | 33 | namespace" option (disabled by default) |
34 | 34 | * (bug 18222) $wgMinimalPasswordLength default is now 1 |
35 | 35 | * $wgSessionHandler can be used to configure session.save_handler |
| 36 | +* Removed $wgRestrictDisplayTitle, in effect permanently setting it to true. |
| 37 | + Without this variable, the DISPLAYTITLE magic word will only accept titles |
| 38 | + that are equivalent to the actual page title. |
36 | 39 | |
37 | 40 | === New features in 1.15 === |
38 | 41 | |