Follow up to r79085. Fixes bug 31408.
authorDerk-Jan Hartman <hartman@users.mediawiki.org>
Sat, 22 Oct 2011 19:50:43 +0000 (19:50 +0000)
committerDerk-Jan Hartman <hartman@users.mediawiki.org>
Sat, 22 Oct 2011 19:50:43 +0000 (19:50 +0000)
There was a typo, causing the minoredit tag not to show up in the enhanced recentchanges.

includes/ChangesList.php

index a407277..1a04930 100644 (file)
@@ -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'],
                        ) );