Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -2016,7 +2016,6 @@ |
2017 | 2017 | 'sp-contributions-footer', |
2018 | 2018 | 'sp-contributions-footer-anon', |
2019 | 2019 | 'sp-contributions-showsizediff', |
2020 | | - 'sp-contributions-showsizediff-warn', |
2021 | 2020 | ), |
2022 | 2021 | 'whatlinkshere' => array( |
2023 | 2022 | 'whatlinkshere', |
Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -380,11 +380,7 @@ |
381 | 381 | Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' . |
382 | 382 | Xml::namespaceSelector( $this->opts['namespace'], '' ) |
383 | 383 | ); |
384 | | - $fShowDiff = Xml::infoBox( |
385 | | - Xml::checkLabel( wfMsg( 'sp-contributions-showsizediff' ), 'showSizeDiff', 'mw-show-size-diff', $this->opts['showSizeDiff'] ) . '<br />'. |
386 | | - wfMsgReplaceArgs ( wfMsg( 'sp-contributions-showsizediff-warn' ), array( $wgContLang->formatTimePeriod( $wgRCMaxAge ) ) ) |
387 | | - , 'warning-32.png', wfMsg( 'sp-contributions-showsizediff' ) |
388 | | - ); |
| 384 | + $fShowDiff = Xml::checkLabel( wfMsg( 'sp-contributions-showsizediff' ), 'showSizeDiff', 'mw-show-size-diff', $this->opts['showSizeDiff'] ); |
389 | 385 | } |
390 | 386 | |
391 | 387 | $f .= Xml::fieldset( wfMsg( 'sp-contributions-search' ) ) . |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2994,7 +2994,6 @@ |
2995 | 2995 | 'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages |
2996 | 2996 | 'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages |
2997 | 2997 | 'sp-contributions-showsizediff' => 'Display difference in page size', |
2998 | | -'sp-contributions-showsizediff-warn' => 'This instance has recent changes log limited to $1 . If you use this option, pages not in this log will not be displayed', |
2999 | 2998 | |
3000 | 2999 | # What links here |
3001 | 3000 | 'whatlinkshere' => 'What links here', |