Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1547,7 +1547,10 @@ |
1548 | 1548 | public function buildRollbackLink( $rev ) { |
1549 | 1549 | global $wgRequest, $wgUser; |
1550 | 1550 | $title = $rev->getTitle(); |
1551 | | - $query = array( 'action' => 'rollback' ); |
| 1551 | + $query = array( |
| 1552 | + 'action' => 'rollback', |
| 1553 | + 'from' => $rev->getUserText() |
| 1554 | + ); |
1552 | 1555 | if( $wgRequest->getBool( 'bot' ) ) { |
1553 | 1556 | $query['bot'] = '1'; |
1554 | 1557 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -49,6 +49,7 @@ |
50 | 50 | * Fixed few performance troubles of large job queue processing |
51 | 51 | * Not setting various parameters in Foreign Repos now fails more gracefully |
52 | 52 | * (bug 14995) Some link fragments in the interface stopped appearing |
| 53 | +* (bug 14997) Rollback links now work again |
53 | 54 | |
54 | 55 | === API changes in 1.14 === |
55 | 56 | |