Index: bp-members-functions.php
===================================================================
--- bp-members-functions.php	(revision 13494)
+++ bp-members-functions.php	(working copy)
@@ -881,6 +881,7 @@
  *
  * @param int $user_id The ID for the user.
  * @return bool True if spammer, otherwise false.
+ * @global BP_Core_Members_Template $members_template The main member template loop class.
  */
 function bp_is_user_spammer( $user_id = 0 ) {
 
@@ -2456,6 +2457,7 @@
  * @since 2.0.0
  *
  * @see bp_core_signup_disable_inactive()
+ * @global $error
  */
 function bp_members_login_resend_activation_email() {
 	global $error;
@@ -2624,6 +2626,7 @@
  * Show a custom error message when a logged-in user is marked as a spammer.
  *
  * @since 1.8.0
+ * @global $error.
  */
 function bp_live_spammer_login_error() {
 	global $error;
Index: classes/class-bp-members-admin.php
===================================================================
--- classes/class-bp-members-admin.php	(revision 13494)
+++ classes/class-bp-members-admin.php	(working copy)
@@ -721,7 +721,10 @@
 	/**
 	 * Highlight the Users menu if on Edit Profile and check if on the user's admin profile.
 	 *
-	 * @since 2.1.0
+	 * @since 2.1.0z
+	 * 
+	 * @global string $submenu_file.
+	 * @global string $parent_file.
 	 */
 	public function profile_admin_head() {
 		global $submenu_file, $parent_file;
@@ -1685,6 +1688,7 @@
 	 *
 	 * @param WP_User_Query|null $query The users query.
 	 * @return WP_User_Query|null The users query without the signups.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public function remove_signups_from_user_query( $query = null ) {
 		global $wpdb;
@@ -1727,6 +1731,8 @@
 	 *
 	 * @param array $views WP List Table views.
 	 * @return array The views with the signup view added.
+	 * 
+	 * @global string $role.
 	 */
 	public function signup_filter_view( $views = array() ) {
 		global $role;
@@ -2765,6 +2771,8 @@
 	 * @param WP_Query $query
 	 *
 	 * @since 2.7.0
+	 * 
+	 * @global string $pagenow.
 	 */
 	public function users_table_filter_by_type( $query ) {
 		global $pagenow;
Index: classes/class-bp-members-component.php
===================================================================
--- classes/class-bp-members-component.php	(revision 13494)
+++ classes/class-bp-members-component.php	(working copy)
@@ -289,6 +289,7 @@
 	 * @see BP_Component::setup_globals() for description of parameters.
 	 *
 	 * @param array $args See {@link BP_Component::setup_globals()}.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public function setup_globals( $args = array() ) {
 		global $wpdb;
Index: classes/class-bp-members-list-table.php
===================================================================
--- classes/class-bp-members-list-table.php	(revision 13494)
+++ classes/class-bp-members-list-table.php	(working copy)
@@ -57,6 +57,8 @@
 	 * manipulation required prior to rendering.
 	 *
 	 * @since 2.0.0
+	 * 
+	 * @global $usersearch.
 	 */
 	public function prepare_items() {
 		global $usersearch;
@@ -98,6 +100,8 @@
 	 * @since 2.5.0
 	 *
 	 * @global string $role The name of role the users screens is filtered by
+	 * 
+	 * @global string $role.
 	 */
 	public function views() {
 		global $role;
Index: classes/class-bp-members-ms-list-table.php
===================================================================
--- classes/class-bp-members-ms-list-table.php	(revision 13494)
+++ classes/class-bp-members-ms-list-table.php	(working copy)
@@ -57,6 +57,9 @@
 	 * manipulation required prior to rendering.
 	 *
 	 * @since 2.0.0
+	 * 
+	 * @global string $usersearch.
+	 * @global string $mode.
 	 */
 	public function prepare_items() {
 		global $usersearch, $mode;
@@ -396,6 +399,7 @@
 	 * @since 2.0.0
 	 *
 	 * @param object|null $signup_object The signup data object.
+	 * @global string $mode.
 	 */
 	public function column_registered( $signup_object = null ) {
 		global $mode;
@@ -415,6 +419,7 @@
 	 * @since 2.0.0
 	 *
 	 * @param object|null $signup_object Signup object instance.
+	 * @global string $mode.
 	 */
 	public function column_date_sent( $signup_object = null ) {
 		global $mode;
Index: classes/class-bp-signup.php
===================================================================
--- classes/class-bp-signup.php	(revision 13494)
+++ classes/class-bp-signup.php	(working copy)
@@ -172,6 +172,8 @@
 	 * Populate the instantiated class with data based on the signup_id provided.
 	 *
 	 * @since 2.0.0
+	 * 
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public function populate() {
 		global $wpdb;
@@ -279,6 +281,7 @@
 	 *     @type array $signups Located signups. (IDs only if `fields` is set to `ids`.)
 	 *     @type int   $total   Total number of signups matching params.
 	 * }
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public static function get( $args = array() ) {
 		global $wpdb;
@@ -454,6 +457,7 @@
 	 *     @type string     $meta           New user's user meta.
 	 * }
 	 * @return int|bool ID of newly created signup on success, false on failure.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public static function add( $args = array() ) {
 		global $wpdb;
@@ -533,6 +537,7 @@
 	 * @param string $user_email    User email address.
 	 * @param array  $usermeta      Metadata associated with the signup.
 	 * @return int User id.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public static function add_backcompat( $user_login = '', $user_password = '', $user_email = '', $usermeta = array() ) {
 		global $wpdb;
@@ -643,6 +648,7 @@
 	 *
 	 * @param string $key Activation key.
 	 * @return bool True on success, false on failure.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public static function validate( $key = '' ) {
 		global $wpdb;
@@ -721,6 +727,7 @@
 	 *     @type array $meta Meta to update.
 	 * }
 	 * @return int The signup id.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public static function update( $args = array() ) {
 		global $wpdb;
@@ -984,6 +991,7 @@
 	 *
 	 * @param array $signup_ids Single ID or list of IDs to delete.
 	 * @return array
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public static function delete( $signup_ids = array() ) {
 		global $wpdb;
