Index: trunk/phase3/includes/api/ApiMain.php |
— | — | @@ -726,7 +726,7 @@ |
727 | 727 | foreach ( self::$mRights as $right => $rightMsg ) { |
728 | 728 | $groups = User::getGroupsWithPermission( $right ); |
729 | 729 | $msg .= "* " . $right . " *\n " . wfMsgReplaceArgs( $rightMsg[ 'msg' ], $rightMsg[ 'params' ] ) . |
730 | | - "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n"; |
| 730 | + "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n\n"; |
731 | 731 | |
732 | 732 | } |
733 | 733 | |