Index: wp-admin/user-edit.php
===================================================================
--- wp-admin/user-edit.php	(revision 10323)
+++ wp-admin/user-edit.php	(working copy)
@@ -257,11 +257,10 @@
 
 // print the 'no role' option. Make it selected if the user has no role yet.
 if ( $user_role )
-	$role_list .= '<option value="">' . __('&mdash; No role for this blog &mdash;') . '</option>';
+	echo '<option value="">' . __('&mdash; No role for this blog &mdash;') . '</option>';
 else
-	$role_list .= '<option value="" selected="selected">' . __('&mdash; No role for this blog &mdash;') . '</option>';
-
-echo $role_list;?>
+	echo '<option value="" selected="selected">' . __('&mdash; No role for this blog &mdash;') . '</option>';
+?>
 </select></td></tr>
 <?php endif; //!$is_profile_page ?>
 
