diff --git a/src/bp-xprofile/bp-xprofile-admin.php b/src/bp-xprofile/bp-xprofile-admin.php
index 999f32b17..fcbecbb34 100644
--- a/src/bp-xprofile/bp-xprofile-admin.php
+++ b/src/bp-xprofile/bp-xprofile-admin.php
@@ -409,6 +409,9 @@ function xprofile_admin_screen( $message = '', $type = 'error' ) {
  * @since 1.0.0
  *
  * @param int|null $group_id Group ID to manage.
+ * 
+ * @global string $message The feedback message to show.
+ * @global string $type The type of feedback message to show.
  */
 function xprofile_admin_manage_group( $group_id = null ) {
 	global $message, $type;
@@ -476,6 +479,9 @@ function xprofile_admin_manage_group( $group_id = null ) {
  * @since 1.0.0
  *
  * @param int $group_id ID of the group to delete.
+ * 
+ * @global string $message The feedback message to show.
+ * @global string $type The type of feedback message to show.
  */
 function xprofile_admin_delete_group( $group_id ) {
 	global $message, $type;
@@ -556,6 +562,9 @@ function xprofile_admin_delete_group_screen( $group_id ) {
  *
  * @param int      $group_id ID of the group.
  * @param int|null $field_id ID of the field being managed.
+ * @global wpdb $wpdb WordPress database object.
+ * @global string $message The feedback message to show.
+ * @global $groups.
  */
 function xprofile_admin_manage_field( $group_id, $field_id = null ) {
 	global $wpdb, $message, $groups;
@@ -1011,6 +1020,7 @@ add_action( 'wp_ajax_xprofile_reorder_groups', 'xprofile_ajax_reorder_field_grou
  * @param object $admin_group Admin group object.
  * @param string $class       Classes to append to output.
  * @param bool   $is_signup   Whether the admin field output is made inside the signup group.
+ * @global $field.
  */
 function xprofile_admin_field( $admin_field, $admin_group, $class = '', $is_signup = false ) {
 	global $field;
diff --git a/src/bp-xprofile/bp-xprofile-cache.php b/src/bp-xprofile/bp-xprofile-cache.php
index 795c59f68..e785a000b 100644
--- a/src/bp-xprofile/bp-xprofile-cache.php
+++ b/src/bp-xprofile/bp-xprofile-cache.php
@@ -53,6 +53,8 @@ function bp_xprofile_get_non_cached_field_ids( $user_id = 0, $field_ids = array(
  * @param array $object_ids Multi-dimensional array of object_ids, keyed by
  *                          object type ('group', 'field', 'data').
  * @return bool
+ * 
+ * @global wpdb $wpdb WordPress database object.
  */
 function bp_xprofile_update_meta_cache( $object_ids = array() ) {
 	global $wpdb;
diff --git a/src/bp-xprofile/classes/class-bp-xprofile-data-template.php b/src/bp-xprofile/classes/class-bp-xprofile-data-template.php
index 27c6e5be9..b7d3e3297 100644
--- a/src/bp-xprofile/classes/class-bp-xprofile-data-template.php
+++ b/src/bp-xprofile/classes/class-bp-xprofile-data-template.php
@@ -301,6 +301,7 @@ class BP_XProfile_Data_Template {
 	 * Sets up the profile group.
 	 *
 	 * @since 1.0.0
+	 * @global $group.
 	 */
 	public function the_profile_group() {
 		global $group;
@@ -392,6 +393,7 @@ class BP_XProfile_Data_Template {
 	 * Set up the profile fields.
 	 *
 	 * @since 1.0.0
+	 * @global $field.
 	 */
 	public function the_profile_field() {
 		global $field;
diff --git a/src/bp-xprofile/classes/class-bp-xprofile-field-type-wordpress.php b/src/bp-xprofile/classes/class-bp-xprofile-field-type-wordpress.php
index 73eac6ab3..08afaae4a 100644
--- a/src/bp-xprofile/classes/class-bp-xprofile-field-type-wordpress.php
+++ b/src/bp-xprofile/classes/class-bp-xprofile-field-type-wordpress.php
@@ -159,6 +159,7 @@ abstract class BP_XProfile_Field_Type_WordPress extends BP_XProfile_Field_Type {
 	 * @param integer $user_id The user ID.
 	 * @param integer $field_id The xProfile field ID.
 	 * @return array An array containing the metadata `id`, `value` and `table_name`.
+	 * @global wpdb $wpdb WordPress database object.
 	 */
 	public function get_field_value( $user_id, $field_id = 0 ) {
 		global $wpdb;
