Index: branches/wmf-deployment/extensions/ReaderFeedback/specialpages/RatedPages_body.php |
— | — | @@ -81,7 +81,7 @@ |
82 | 82 | }
|
83 | 83 | $ratinghist = SpecialPage::getTitleFor( 'RatingHistory' );
|
84 | 84 | $graph = $this->skin->makeKnownLinkObj( $ratinghist, wfMsg('ratedpages-graphs'),
|
85 | | - 'target='.$title->getPrefixedUrl() );
|
| 85 | + 'target='.$title->getPrefixedUrl().'&period=93' );
|
86 | 86 | return "<li>$link $stxt ($hist) ($graph)</li>";
|
87 | 87 | }
|
88 | 88 | }
|
— | — | @@ -120,9 +120,9 @@ |
121 | 121 | $conds['page_namespace'] = $this->namespace;
|
122 | 122 | // Has to be good/crappy enough
|
123 | 123 | switch( $this->tier ) {
|
124 | | - case 3: $conds[] = "rfp_ave_val > 3.5"; break;
|
| 124 | + case 3: $conds[] = "rfp_ave_val > 3"; break;
|
125 | 125 | case 1: $conds[] = "rfp_ave_val < 2"; break;
|
126 | | - default: $conds[] = "rfp_ave_val >= 2 AND rfp_ave_val <= 3.5"; break;
|
| 126 | + default: $conds[] = "rfp_ave_val >= 2 AND rfp_ave_val <= 3"; break;
|
127 | 127 | }
|
128 | 128 | // Reasonable samples only
|
129 | 129 | $conds[] = 'rfp_count >= '.ReaderFeedback::getFeedbackSize();
|