Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -122,6 +122,7 @@ |
123 | 123 | # Inform the user of our success and set an automatic edit summary |
124 | 124 | $this->editFormPageTop .= $wgOut->parse( wfMsgNoTrans( 'undo-success' ) ); |
125 | 125 | $this->summary = wfMsgForContent( 'undo-summary', $undo, $undorev->getUserText() ); |
| 126 | + $this->formtype = 'diff'; |
126 | 127 | } else { |
127 | 128 | # Warn the user that something went wrong |
128 | 129 | $this->editFormPageTop .= $wgOut->parse( wfMsgNoTrans( 'undo-failure' ) ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1021,7 +1021,8 @@ |
1022 | 1022 | You can go back and edit an existing page, or [[Special:Userlogin|log in or create an account]].', |
1023 | 1023 | |
1024 | 1024 | # "Undo" feature |
1025 | | -'undo-success' => 'The edit has been undone. Please confirm, and then save the changes below.', |
| 1025 | +'undo-success' => 'The edit can be undone. Please check the diff below to verify that this is what you want to do, and then save the changes below to finish undoing |
| 1026 | +the edit.', |
1026 | 1027 | 'undo-failure' => 'The edit could not be undone due to conflicting intermediate edits.', |
1027 | 1028 | 'undo-summary' => 'Undo revision $1 by [[Special:Contributions/$2]] ([[User talk:$2]])', |
1028 | 1029 | |