Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2105,6 +2105,7 @@ |
2106 | 2106 | 'move-page-backlink', |
2107 | 2107 | 'move-page-legend', |
2108 | 2108 | 'movepagetext', |
| 2109 | + 'movepagetext-noredirectfixer', |
2109 | 2110 | 'movepagetalktext', |
2110 | 2111 | 'movearticle', |
2111 | 2112 | 'moveuserpage-warning', |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3122,6 +3122,17 @@ |
3123 | 3123 | '''Warning!''' |
3124 | 3124 | This can be a drastic and unexpected change for a popular page; |
3125 | 3125 | please be sure you understand the consequences of this before proceeding.", |
| 3126 | +'movepagetext-noredirectfixer' => "Using the form below will rename a page, moving all of its history to the new name. |
| 3127 | +The old title will become a redirect page to the new title. |
| 3128 | +Be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]]. |
| 3129 | +You are responsible for making sure that links continue to point where they are supposed to go. |
| 3130 | + |
| 3131 | +Note that the page will '''not''' be moved if there is already a page at the new title, unless it is empty or a redirect and has no past edit history. |
| 3132 | +This means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page. |
| 3133 | + |
| 3134 | +'''Warning!''' |
| 3135 | +This can be a drastic and unexpected change for a popular page; |
| 3136 | +please be sure you understand the consequences of this before proceeding.", |
3126 | 3137 | 'movepagetalktext' => "The associated talk page will be automatically moved along with it '''unless:''' |
3127 | 3138 | *A non-empty talk page already exists under the new name, or |
3128 | 3139 | *You uncheck the box below. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -424,6 +424,8 @@ |
425 | 425 | "File" and "Media" are allowed now |
426 | 426 | * (bug 25872) Rename the HttpRequest class to MWHttpRequest to avoid conflict |
427 | 427 | with php extension that defines same class. |
| 428 | +* (bug 20591) There's now a different message on Special:MovePage when |
| 429 | + $wgFixDoubleRedirects is set to false. |
428 | 430 | |
429 | 431 | === API changes in 1.17 === |
430 | 432 | * (bug 22738) Allow filtering by action type on query=logevent. |