Index: trunk/phase3/includes/Article.php |
— | — | @@ -2611,6 +2611,8 @@ |
2612 | 2612 | . $wgUser->getSkin()->userToolLinks( $target->getUser(), $target->getUserText() ); |
2613 | 2613 | $wgOut->addHtml( wfMsgExt( 'rollback-success', array( 'parse', 'replaceafter' ), $old, $new ) ); |
2614 | 2614 | $wgOut->returnToMain( false, $this->mTitle ); |
| 2615 | + $de = new DifferenceEngine( $this->mTitle, $current->getId(), 'next', false, true ); |
| 2616 | + $de->showDiff(); |
2615 | 2617 | } |
2616 | 2618 | |
2617 | 2619 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -131,6 +131,7 @@ |
132 | 132 | * New layout for Special:Specialpages. Restricted pages are marked but not separated |
133 | 133 | from other pages in their group. And the page uses css rather than tables to create |
134 | 134 | a column layout which grades well in all sizes of browsers. |
| 135 | +* (bug 14263) Show a diff of the revert on rollback notification page. |
135 | 136 | |
136 | 137 | === Bug fixes in 1.13 === |
137 | 138 | |