Index: bp-themes/bp-default/functions.php
===================================================================
--- bp-themes/bp-default/functions.php	(revision 6331)
+++ bp-themes/bp-default/functions.php	(working copy)
@@ -112,31 +112,29 @@
 		add_theme_support( 'custom-header', $custom_header_args );
 	}
 
-	if ( !is_admin() ) {
-		// Register buttons for the relevant component templates
-		// Friends button
-		if ( bp_is_active( 'friends' ) )
-			add_action( 'bp_member_header_actions',    'bp_add_friend_button',           5 );
+	// Register buttons for the relevant component templates
+	// Friends button
+	if ( bp_is_active( 'friends' ) )
+		add_action( 'bp_member_header_actions',    'bp_add_friend_button',           5 );
 
-		// Activity button
-		if ( bp_is_active( 'activity' ) )
-			add_action( 'bp_member_header_actions',    'bp_send_public_message_button',  20 );
+	// Activity button
+	if ( bp_is_active( 'activity' ) )
+		add_action( 'bp_member_header_actions',    'bp_send_public_message_button',  20 );
 
-		// Messages button
-		if ( bp_is_active( 'messages' ) )
-			add_action( 'bp_member_header_actions',    'bp_send_private_message_button', 20 );
+	// Messages button
+	if ( bp_is_active( 'messages' ) )
+		add_action( 'bp_member_header_actions',    'bp_send_private_message_button', 20 );
 
-		// Group buttons
-		if ( bp_is_active( 'groups' ) ) {
-			add_action( 'bp_group_header_actions',     'bp_group_join_button',           5 );
-			add_action( 'bp_group_header_actions',     'bp_group_new_topic_button',      20 );
-			add_action( 'bp_directory_groups_actions', 'bp_group_join_button' );
-		}
-
-		// Blog button
-		if ( bp_is_active( 'blogs' ) )
-			add_action( 'bp_directory_blogs_actions',  'bp_blogs_visit_blog_button' );
+	// Group buttons
+	if ( bp_is_active( 'groups' ) ) {
+		add_action( 'bp_group_header_actions',     'bp_group_join_button',           5 );
+		add_action( 'bp_group_header_actions',     'bp_group_new_topic_button',      20 );
+		add_action( 'bp_directory_groups_actions', 'bp_group_join_button' );
 	}
+
+	// Blog button
+	if ( bp_is_active( 'blogs' ) )
+		add_action( 'bp_directory_blogs_actions',  'bp_blogs_visit_blog_button' );
 }
 add_action( 'after_setup_theme', 'bp_dtheme_setup' );
 endif;
