Index: trunk/phase3/includes/Article.php |
— | — | @@ -2152,7 +2152,7 @@ |
2153 | 2153 | |
2154 | 2154 | # Inform the user |
2155 | 2155 | $wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) ); |
2156 | | - $wgOut->addWikiMsg( 'markedaspatrolledtext' ); |
| 2156 | + $wgOut->addWikiMsg( 'markedaspatrolledtext', $rc->getTitle()->getPrefixedText() ); |
2157 | 2157 | $wgOut->returnToMain( false, $return ); |
2158 | 2158 | } |
2159 | 2159 | |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3413,7 +3413,7 @@ |
3414 | 3414 | 'markaspatrolledlink' => '[$1]', # do not translate or duplicate this message to other languages |
3415 | 3415 | 'markaspatrolledtext' => 'Mark this page as patrolled', |
3416 | 3416 | 'markedaspatrolled' => 'Marked as patrolled', |
3417 | | -'markedaspatrolledtext' => 'The selected revision has been marked as patrolled.', |
| 3417 | +'markedaspatrolledtext' => 'The selected revision of [[:$1]] has been marked as patrolled.', |
3418 | 3418 | 'rcpatroldisabled' => 'Recent changes patrol disabled', |
3419 | 3419 | 'rcpatroldisabledtext' => 'The recent changes patrol feature is currently disabled.', |
3420 | 3420 | 'markedaspatrollederror' => 'Cannot mark as patrolled', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -300,11 +300,15 @@ |
301 | 301 | * (bug 22051) Returing false in SpecialContributionsBeforeMainOutput hook now |
302 | 302 | stops normal output |
303 | 303 | * Send new password e-mail in users preference language |
304 | | -* LanguageConverter now support nested using of manual convert syntax like "-{-{}-}-" |
| 304 | +* LanguageConverter now support nested using of manual convert syntax like |
| 305 | + "-{-{}-}-" |
305 | 306 | * (bug 16281) Show copyright system message on special pages |
306 | 307 | * Upload license preview now uses the API instead of action=ajax |
307 | 308 | * (bug 7346) Add <guid> to RSS to avoid duplicates |
308 | | -* (bug 19996) Added new hooks for Special:Search, which allow to further restrict/expand it. |
| 309 | +* (bug 19996) Added new hooks for Special:Search, which allow to further |
| 310 | + restrict/expand it. |
| 311 | +* (bug 21936) When a revision has been patrolled, there's now a link back to the |
| 312 | + article |
309 | 313 | |
310 | 314 | === Bug fixes in 1.16 === |
311 | 315 | |