Index: bp-themes/bp-default/comments.php
===================================================================
--- bp-themes/bp-default/comments.php	(revision 4405)
+++ bp-themes/bp-default/comments.php	(working copy)
@@ -1,4 +1,13 @@
 <?php
+// comment_form() args
+
+  $fields = array(
+				'comment_notes_after' => '<p class="form-allowed-tags">' . sprintf( __( 'You may use these <abbr title="HyperText Markup 
+				Language">HTML</abbr> tags and attributes: %s' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>',
+				// if non logged in comments are allowed 'email not published' shown.
+				'comment_notes_before' => '<p class="comment-notes">' . __( 'Your email address will not be published.' ) . ( $req ? $required_text : '' ) . '</p>'
+				);
+				
 	if ( post_password_required() ) {
 		echo '<h3 class="comments-header">' . __( 'Password Protected', 'buddypress' ) . '</h3>';
 		echo '<p class="alert password-protected">' . __( 'Enter the password to view comments.', 'buddypress' ) . '</p>';
@@ -54,7 +63,7 @@
 <?php endif; ?>
 
 <?php if ( comments_open() ) : ?>
-	<?php comment_form() ?>
+	<?php comment_form( $fields ) ?>
 <?php endif; ?>
 
 <?php if ( !empty( $num_trackbacks ) ) : ?>
