https://bugzilla.wikimedia.org/show_bug.cgi?id=42211
--- Comment #2 from Krenair <[email protected]> 2012-11-17 15:35:01 UTC --- This hack fixes it for me: diff --git a/includes/logging/LogFormatter.php b/includes/logging/LogFormatter.php index 8c1e294..26368b4 100644 --- a/includes/logging/LogFormatter.php +++ b/includes/logging/LogFormatter.php @@ -1108,7 +1108,7 @@ class RightsLogFormatter extends LogFormatter { $params[3] = $this->msg( 'rightsnone' )->text(); } if ( count( $newGroups ) ) { - $params[4] = $lang->listToText( $newGroups ); + $params[4] = $lang->listToText( array_values( $newGroups ) ); } else { $params[4] = $this->msg( 'rightsnone' )->text(); } -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
