diff --git bp-core/admin/bp-core-schema.php bp-core/admin/bp-core-schema.php
index 53a4ceb..3db4c1c 100644
--- bp-core/admin/bp-core-schema.php
+++ bp-core/admin/bp-core-schema.php
@@ -52,8 +52,7 @@ function bp_core_install( $active_components = false ) {
 		bp_core_install_blog_tracking();
 
 	// Install the signups table
-	if ( bp_get_signup_allowed() )
-		bp_core_install_signups();
+	bp_core_install_signups();
 
 }
 
diff --git bp-core/bp-core-update.php bp-core/bp-core-update.php
index 6c59538..d388c26 100644
--- bp-core/bp-core-update.php
+++ bp-core/bp-core-update.php
@@ -351,7 +351,7 @@ function bp_update_to_2_0() {
 
 	/** Migrate signups data *********************************************/
 
-	if ( bp_get_signup_allowed() && ! is_multisite() ) {
+	if ( ! is_multisite() ) {
 
 		if ( empty( $wpdb->signups ) ) {
 			bp_core_install_signups();
diff --git bp-members/bp-members-admin.php bp-members/bp-members-admin.php
index 74b80d2..3a07766 100644
--- bp-members/bp-members-admin.php
+++ bp-members/bp-members-admin.php
@@ -162,7 +162,7 @@ class BP_Members_Admin {
 
 		/** Signups **************************************************************/
 
-		if ( bp_get_signup_allowed() && is_admin() ) {
+		if ( is_admin() ) {
 			if ( ! is_multisite() ) {
 				add_action( 'pre_user_query', array( $this, 'remove_signups_from_user_query'),  10, 1 );
 			}
@@ -194,16 +194,14 @@ class BP_Members_Admin {
 			array( &$this, 'user_admin' )
 		);
 
-		// Manage signups if allowed
-		if ( bp_get_signup_allowed() ) {
-			$hooks['signups'] = $this->signups_page = add_users_page(
-				__( 'Manage Signups',  'buddypress' ),
-				__( 'Manage Signups',  'buddypress' ),
-				$this->capability,
-				'bp-signups',
-				array( &$this, 'signups_admin' )
-			);
-		}
+		// Manage signups
+		$hooks['signups'] = $this->signups_page = add_users_page(
+			__( 'Manage Signups',  'buddypress' ),
+			__( 'Manage Signups',  'buddypress' ),
+			$this->capability,
+			'bp-signups',
+			array( &$this, 'signups_admin' )
+		);
 
 		$edit_page = 'user-edit';
 		$this->users_page = 'users';
