Index: branches/wmf-deployment/extensions/ReaderFeedback/specialpages/RatedPages_body.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | protected function showPageList() {
|
57 | 57 | global $wgOut;
|
58 | 58 | $tags = ReaderFeedback::getFeedbackTags();
|
59 | | - $pager = new LikedPagesPager( $this, array(), $this->namespace, $this->tag, $this->tier );
|
| 59 | + $pager = new RatedPagesPager( $this, array(), $this->namespace, $this->tag, $this->tier );
|
60 | 60 | if( isset($tags[$this->tag]) && $pager->getNumRows() ) {
|
61 | 61 | $wgOut->addHTML( wfMsgExt('ratedpages-list', array('parse') ) );
|
62 | 62 | $wgOut->addHTML( $pager->getNavigationBar() );
|
— | — | @@ -80,7 +80,7 @@ |
81 | 81 | $wgLang->formatNum( $size ) ) . '</small>';
|
82 | 82 | }
|
83 | 83 | $ratinghist = SpecialPage::getTitleFor( 'RatingHistory' );
|
84 | | - $graph = $this->skin->makeKnownLinkObj( $ratinghist, wfMsg('likedpages-graphs'),
|
| 84 | + $graph = $this->skin->makeKnownLinkObj( $ratinghist, wfMsg('ratedpages-graphs'),
|
85 | 85 | 'target='.$title->getPrefixedUrl() );
|
86 | 86 | return "<li>$link $stxt ($hist) ($graph)</li>";
|
87 | 87 | }
|
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | /**
|
91 | 91 | * Query to list out well recieved pages
|
92 | 92 | */
|
93 | | -class LikedPagesPager extends AlphabeticPager {
|
| 93 | +class RatedPagesPager extends AlphabeticPager {
|
94 | 94 | public $mForm, $mConds, $namespace, $tag;
|
95 | 95 |
|
96 | 96 | function __construct( $form, $conds = array(), $namespace=0, $tag, $tier ) {
|