* (bug 21936) When a revision has been patrolled, there's now a link back to the article
* Break lines at 80 chars in RELEASE-NOTES
This commit is contained in:
parent
b82e6766e5
commit
518ba96f53
3 changed files with 8 additions and 4 deletions
|
|
@ -300,11 +300,15 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
* (bug 22051) Returing false in SpecialContributionsBeforeMainOutput hook now
|
||||
stops normal output
|
||||
* Send new password e-mail in users preference language
|
||||
* LanguageConverter now support nested using of manual convert syntax like "-{-{}-}-"
|
||||
* LanguageConverter now support nested using of manual convert syntax like
|
||||
"-{-{}-}-"
|
||||
* (bug 16281) Show copyright system message on special pages
|
||||
* Upload license preview now uses the API instead of action=ajax
|
||||
* (bug 7346) Add <guid> to RSS to avoid duplicates
|
||||
* (bug 19996) Added new hooks for Special:Search, which allow to further restrict/expand it.
|
||||
* (bug 19996) Added new hooks for Special:Search, which allow to further
|
||||
restrict/expand it.
|
||||
* (bug 21936) When a revision has been patrolled, there's now a link back to the
|
||||
article
|
||||
|
||||
=== Bug fixes in 1.16 ===
|
||||
|
||||
|
|
|
|||
|
|
@ -2152,7 +2152,7 @@ class Article {
|
|||
|
||||
# Inform the user
|
||||
$wgOut->setPageTitle( wfMsg( 'markedaspatrolled' ) );
|
||||
$wgOut->addWikiMsg( 'markedaspatrolledtext' );
|
||||
$wgOut->addWikiMsg( 'markedaspatrolledtext', $rc->getTitle()->getPrefixedText() );
|
||||
$wgOut->returnToMain( false, $return );
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3413,7 +3413,7 @@ please see math/README to configure.',
|
|||
'markaspatrolledlink' => '[$1]', # do not translate or duplicate this message to other languages
|
||||
'markaspatrolledtext' => 'Mark this page as patrolled',
|
||||
'markedaspatrolled' => 'Marked as patrolled',
|
||||
'markedaspatrolledtext' => 'The selected revision has been marked as patrolled.',
|
||||
'markedaspatrolledtext' => 'The selected revision of [[:$1]] has been marked as patrolled.',
|
||||
'rcpatroldisabled' => 'Recent changes patrol disabled',
|
||||
'rcpatroldisabledtext' => 'The recent changes patrol feature is currently disabled.',
|
||||
'markedaspatrollederror' => 'Cannot mark as patrolled',
|
||||
|
|
|
|||
Loading…
Reference in a new issue