Index: trunk/extensions/FlaggedRevs/specialpages/OldReviewedPages_body.php |
— | — | @@ -262,24 +262,6 @@ |
263 | 263 | "{$quality}{$watching}{$underReview}</li>" ); |
264 | 264 | } |
265 | 265 | |
266 | | - /** |
267 | | - * Get the timestamp of the next revision |
268 | | - * |
269 | | - * @param integer $revision Revision ID. Get the revision that was after this one. |
270 | | - * @param integer $page, page ID |
271 | | - */ |
272 | | - protected function getNextRevisionTimestamp( $revision, $page ) { |
273 | | - $dbr = wfGetDB( DB_SLAVE ); |
274 | | - return $dbr->selectField( 'revision', 'rev_timestamp', |
275 | | - array( |
276 | | - 'rev_page' => $page, |
277 | | - 'rev_id > ' . intval( $revision ) |
278 | | - ), |
279 | | - __METHOD__, |
280 | | - array( 'ORDER BY' => 'rev_id' ) |
281 | | - ); |
282 | | - } |
283 | | - |
284 | 266 | protected static function getLineClass( $hours, $uw ) { |
285 | 267 | if ( $uw == 0 ) |
286 | 268 | return 'fr-unreviewed-unwatched'; |