From eba3dc516668bd3cdd1301bf63c8b4cd8db699dd Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Sun, 3 Dec 2006 00:42:32 +0000 Subject: [PATCH] fixfix (thx brion!) --- includes/SpecialContributions.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 57fc9bfb78..01a346f8f0 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -213,7 +213,6 @@ class ContributionsPage extends QueryPage { rev_user AS userid, rev_user_text AS username, rev_minor_edit AS is_minor, - page_is_new AS is_new, page_latest AS cur_id, rev_id AS rev_id, rev_comment AS comment, @@ -227,7 +226,7 @@ class ContributionsPage extends QueryPage { * and user talk pages that will be shown in the list. */ function preprocessResults( $dbr, $res ) { - if ( !$self->newbies ) + if ( !$this->newbies ) return; // Do a batch existence check for user and talk pages @@ -290,7 +289,7 @@ class ContributionsPage extends QueryPage { else $diff = $messages['diff']; - if( $row->minor ) + if( $row->is_minor ) $mflag = '' . $messages['minoreditletter'] . ' '; else $mflag = ''; -- 2.20.1