Index: bp-core/bp-core-component.php
===================================================================
--- bp-core/bp-core-component.php	(revision 5064)
+++ bp-core/bp-core-component.php	(working copy)
@@ -192,7 +192,7 @@
 	 */
 	function setup_actions() {
 
-		// Register post types
+		// Setup globals
 		add_action( 'bp_setup_globals',          array ( $this, 'setup_globals'          ), 10 );
 
 		// Include required files. Called early to ensure that BP core
@@ -202,13 +202,13 @@
 		// extending this base class.
 		add_action( 'bp_include',                array ( $this, 'includes'               ), 8 );
 
-		// Register post types
+		// Setup navigation
 		add_action( 'bp_setup_nav',              array ( $this, 'setup_nav'              ), 10 );
 
-		// Register post types
+		// Setup WP Admin Bar menus
 		add_action( 'bp_setup_admin_bar',        array ( $this, 'setup_admin_bar'        ), 10 );
 
-		// Register post types
+		// Setup component title
 		add_action( 'bp_setup_title',            array ( $this, 'setup_title'            ), 10 );
 
 		// Register post types
Index: bp-members/bp-members-loader.php
===================================================================
--- bp-members/bp-members-loader.php	(revision 5064)
+++ bp-members/bp-members-loader.php	(working copy)
@@ -60,7 +60,7 @@
 
 		// Define a slug, if necessary
 		if ( !defined( 'BP_MEMBERS_SLUG' ) )
-			define( 'BP_MEMBERS_SLUG', 'members' );
+			define( 'BP_MEMBERS_SLUG', $this->id );
 
 		$globals = array(
 			'path'          => BP_PLUGIN_DIR,
