From 9d3a23019deae9f624df9ff2e998fcdc4c0e6fe1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 5 Dec 2003 22:04:27 +0000 Subject: [PATCH] Fix old minor edits typo --- includes/SpecialContributions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index ada251314f..6c79e247d3 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -100,7 +100,7 @@ function wfSpecialContributions( $par = "" ) $t = $obj1->cur_title; $ts = $obj1->cur_timestamp; $comment =$obj1->cur_comment; - $me = $obj1->cur_minor_edit; + $me = $obj1->cur_minor_edit; $obj1 = wfFetchObject( $res1 ); $topmark = true; @@ -110,7 +110,7 @@ function wfSpecialContributions( $par = "" ) $t = $obj2->old_title; $ts = $obj2->old_timestamp; $comment =$obj2->old_comment; - $me = $obj1->old_minor_edit; + $me = $obj2->old_minor_edit; $obj2 = wfFetchObject( $res2 ); $topmark = false; -- 2.20.1