From dd50a31d908c611386b3f6089ed6ba8830754ad9 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Sat, 22 Oct 2011 19:50:43 +0000 Subject: [PATCH] Follow up to r79085. Fixes bug 31408. There was a typo, causing the minoredit tag not to show up in the enhanced recentchanges. --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index a407277e0e..1a04930581 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -1103,7 +1103,7 @@ class EnhancedChangesList extends ChangesList { } else { $r .= $this->recentChangesFlags( array( 'newpage' => $type == RC_NEW, - 'mino' => $rcObj->mAttribs['rc_minor'], + 'minor' => $rcObj->mAttribs['rc_minor'], 'unpatrolled' => $rcObj->unpatrolled, 'bot' => $rcObj->mAttribs['rc_bot'], ) ); -- 2.20.1