Index: trunk/extensions/FlaggedRevs/forms/RevisionReviewForm.php |
— | — | @@ -1065,7 +1065,7 @@ |
1066 | 1066 | $msg = $newRev->isCurrent() |
1067 | 1067 | ? 'revreview-reject-summary-cur-short' |
1068 | 1068 | : 'revreview-reject-summary-old-short'; |
1069 | | - $defaultSummary = wfMsgExt( $msg, 'parsemag', |
| 1069 | + $defaultSummary = wfMsgExt( $msg, array( 'parsemag', 'content' ), |
1070 | 1070 | $wgContLang->formatNum( count( $rejectIds ) ), |
1071 | 1071 | $oldRev->getId(), |
1072 | 1072 | $oldRevAuthor ); |
— | — | @@ -1073,7 +1073,7 @@ |
1074 | 1074 | $msg = $newRev->isCurrent() |
1075 | 1075 | ? 'revreview-reject-summary-cur' |
1076 | 1076 | : 'revreview-reject-summary-old'; |
1077 | | - $defaultSummary = wfMsgExt( $msg, 'parsemag', |
| 1077 | + $defaultSummary = wfMsgExt( $msg, array( 'parsemag', 'content' ), |
1078 | 1078 | $wgContLang->formatNum( count( $rejectIds ) ), |
1079 | 1079 | $wgContLang->listToText( $rejectAuthors ), |
1080 | 1080 | $oldRev->getId(), |