From: Derk-Jan Hartman Date: Sat, 22 Oct 2011 19:50:43 +0000 (+0000) Subject: Follow up to r79085. Fixes bug 31408. X-Git-Tag: 1.31.0-rc.0~26964 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=dd50a31d908c611386b3f6089ed6ba8830754ad9;p=lhc%2Fweb%2Fwiklou.git Follow up to r79085. Fixes bug 31408. There was a typo, causing the minoredit tag not to show up in the enhanced recentchanges. --- 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'], ) );