Index: trunk/phase3/includes/SpecialUpload.php |
— | — | @@ -612,7 +612,7 @@ |
613 | 613 | $dlink2 = ''; |
614 | 614 | } |
615 | 615 | |
616 | | - $warning .= '<li>' . wfMsgExt( 'fileexists', 'parseinline', $dlink ) . '</li>' . $dlink2; |
| 616 | + $warning .= '<li>' . wfMsgExt( 'fileexists', array('parseinline','replaceafter'), $dlink ) . '</li>' . $dlink2; |
617 | 617 | |
618 | 618 | } elseif( $file->getTitle()->getArticleID() ) { |
619 | 619 | $lnk = $sk->makeKnownLinkObj( $file->getTitle(), '', 'redirect=no' ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -30,6 +30,7 @@ |
31 | 31 | article. This is so that readers who don't know what a red link is aren't |
32 | 32 | confused when they are told they are range-blocked. |
33 | 33 | * One can turn off syndicatino feeds by setting $wgFeed to false |
| 34 | +* (bug 13137) Bots now able to edit protected pages. |
34 | 35 | |
35 | 36 | === Bug fixes in 1.13 === |
36 | 37 | |
— | — | @@ -37,8 +38,8 @@ |
38 | 39 | * (bug 13084) Increase size of source/destination filename fields in upload form |
39 | 40 | * (bug 13115) rebuildrecentchanges should print the current value of $wgRCMaxAge |
40 | 41 | * (bug 13132) Unable to unprotect pages protected with earlier versions of MediaWiki |
41 | | -* (bug 13137) Bots to edit protected pages |
42 | 42 | * (bug 13140) Show parent categories in category namespace |
| 43 | +* (bug 13149) Correctly format 'fileexists' message on Upload page. |
43 | 44 | |
44 | 45 | === API changes in 1.13 === |
45 | 46 | |