Index: public_html/wp-content/plugins/bbpress-org/tools.php
===================================================================
--- public_html/wp-content/plugins/bbpress-org/tools.php	(revision 12676)
+++ public_html/wp-content/plugins/bbpress-org/tools.php	(working copy)
@@ -6,6 +6,8 @@
  * @author johnjamesjacoby
  * @since 1.0.4
  * @return If not spamming a user
+ * 
+ * @global wpdb $wpdb WordPress database object.
  */
 function bbporg_make_user_spammer() {
 
Index: public_html/wp-content/plugins/buddypress-org/extensions.php
===================================================================
--- public_html/wp-content/plugins/buddypress-org/extensions.php	(revision 12676)
+++ public_html/wp-content/plugins/buddypress-org/extensions.php	(working copy)
@@ -33,6 +33,9 @@
 
 /** User Search ***************************************************************/
 
+/**
+ * @global BuddyPress $bp BuddyPress global settings
+ */
 function bporg_users_count_sql( $query, $search_terms ) {
 	global $bp;
 
@@ -40,6 +43,9 @@
 }
 add_filter( 'bp_core_search_users_count_sql', 'bporg_users_count_sql', 10, 2 );
 
+/**
+ * @global BuddyPress $bp BuddyPress global settings
+ */
 function bporg_users_sql( $query, $search_terms, $pag_sql ) {
 	global $bp;
 
@@ -166,6 +172,9 @@
 	add_action( 'init', 'bporg_redirect', 1 ); // before bp_init
 }
 
+/**
+ * @global BuddyPress $bp BuddyPress global settings
+ */
 function bporg_insert_at_mention( $content, $activity_obj ) {
 	global $bp;
 
@@ -179,6 +188,9 @@
 }
 add_filter( 'bp_activity_content_before_save', 'bporg_insert_at_mention', 10, 2 );
 
+/**
+ * @global BuddyPress $bp BuddyPress global settings
+ */
 function bporg_activity_with_others_filter( $qs ) {
 	global $bp;
 
@@ -196,6 +208,9 @@
 }
 //add_filter( 'bp_ajax_querystring', 'bporg_activity_with_others_filter', 11 );
 
+/**
+ * @global BuddyPress $bp BuddyPress global settings
+ */
 function bporg_fix_activity_redirect( $redirect, $activity ) {
 	global $bp;
 
Index: public_html/wp-content/plugins/buddypress-org/toolbar.php
===================================================================
--- public_html/wp-content/plugins/buddypress-org/toolbar.php	(revision 12676)
+++ public_html/wp-content/plugins/buddypress-org/toolbar.php	(working copy)
@@ -331,6 +331,8 @@
  *
  * @since BuddyPress (1.6)
  * @todo Deprecate WP 3.2 Toolbar compatibility when we drop 3.2 support
+ * 
+* @global $bp.
  */
 function bporg_admin_bar_my_account_menu( $wp_admin_bar ) {
 	global $bp;
Index: public_html/wp-content/themes/bb-base/functions-codex.php
===================================================================
--- public_html/wp-content/themes/bb-base/functions-codex.php	(revision 12676)
+++ public_html/wp-content/themes/bb-base/functions-codex.php	(working copy)
@@ -399,6 +399,8 @@
 	 * @since February 6, 2012
 	 * @deprecated November 29, 2014
 	 * @return Bail under certain conditions
+	 * @global $current_user.
+	 * @global $wp_roles.
 	 */
 	public function autorole() {
 
Index: public_html/wp-content/themes/codex-bbpress-org/footer.php
===================================================================
--- public_html/wp-content/themes/codex-bbpress-org/footer.php	(revision 12676)
+++ public_html/wp-content/themes/codex-bbpress-org/footer.php	(working copy)
@@ -11,6 +11,9 @@
 
 						<?php
 
+						/**
+						 * @global $codex_contributors.
+						 */
 						global $codex_contributors;
 
 						if ( count( $codex_contributors ) ) : ?>
Index: public_html/wp-content/themes/codex-bbpress-org/front-page.php
===================================================================
--- public_html/wp-content/themes/codex-bbpress-org/front-page.php	(revision 12676)
+++ public_html/wp-content/themes/codex-bbpress-org/front-page.php	(working copy)
@@ -89,6 +89,10 @@
 	</div>
 
 		<?php
+			/**
+			 * @global WP_Post $post Global post object.
+			 * @global $codex_contributors.
+			 */
 			global $post;
 
 			$args         = array( 'order' => 'ASC', );
Index: public_html/wp-content/themes/codex-bbpress-org/page.php
===================================================================
--- public_html/wp-content/themes/codex-bbpress-org/page.php	(revision 12676)
+++ public_html/wp-content/themes/codex-bbpress-org/page.php	(working copy)
@@ -20,6 +20,10 @@
 				<hr class="hidden" />
 
 <?php
+	/**
+	 * @global WP_Post $post Global post object.
+	 * @global $codex_contributors.
+	 */
 	global $post;
 
 	$args         = array( 'order' => 'ASC', );
Index: public_html/wp-content/themes/codex-bbpress-org/sidebar.php
===================================================================
--- public_html/wp-content/themes/codex-bbpress-org/sidebar.php	(revision 12676)
+++ public_html/wp-content/themes/codex-bbpress-org/sidebar.php	(working copy)
@@ -12,7 +12,10 @@
 		</div>
 
 		<?php endif;
-
+		/**
+		 * @global WP_Post $post Global post object.
+		 * 
+		 */
 		global $post;
 
 		$show_related = true;
Index: public_html/wp-content/themes/codex-buddypress-org/activity-entry.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/activity-entry.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/activity-entry.php	(working copy)
@@ -1,5 +1,12 @@
-<?php /* This template is used by activity-loop.php and AJAX functions to show each activity */ ?>
+<?php /* This template is used by activity-loop.php and AJAX functions to show each activity */
 
+/**
+ * @global $activities_template.
+ * 
+ */
+
+?>
+
 <?php do_action( 'bp_before_activity_entry' ) ?>
 
 <li class="<?php bp_activity_css_class() ?>" id="activity-<?php bp_activity_id() ?>">
Index: public_html/wp-content/themes/codex-buddypress-org/footer.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/footer.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/footer.php	(working copy)
@@ -16,7 +16,10 @@
 			<h3 class="title">Article Contributors</h3>
 
 			<?php
-
+			/**
+			 * @global WP_Post $post Global post object.
+			 * @global $codex_contributors.
+			 */
 			global $codex_contributors, $post;
 
 			if ( count( $codex_contributors ) ) {
Index: public_html/wp-content/themes/codex-buddypress-org/front-page.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/front-page.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/front-page.php	(working copy)
@@ -89,6 +89,10 @@
 	</div>
 
 		<?php
+			/**
+			 * @global WP_Post $post Global post object.
+			 * @global $codex_contributors.
+			 */
 			global $post;
 
 			$args         = array( 'order' => 'ASC', );
Index: public_html/wp-content/themes/codex-buddypress-org/page.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/page.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/page.php	(working copy)
@@ -21,6 +21,12 @@
 <hr class="hidden" />
 
 <?php
+
+	/**
+	 * @global WP_Post $post Global post object.
+	 * @global $codex_contributors.
+	 */
+
 	global $post;
 
 	$args         = array( 'order' => 'ASC', );
Index: public_html/wp-content/themes/codex-buddypress-org/sidebar.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/sidebar.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/sidebar.php	(working copy)
@@ -72,7 +72,12 @@
 	</div>
 
 
-	<?php if ( is_tax() ) {
+	<?php
+	
+	/**
+	 * @global $codex_contributors.
+	 */
+	if ( is_tax() ) {
 		global $codex_contributors;
 
 		if ( !empty( $codex_contributors ) ) {
Index: public_html/wp-content/themes/codex-buddypress-org/widgets/inbox.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/widgets/inbox.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/widgets/inbox.php	(working copy)
@@ -4,6 +4,9 @@
 		parent::__construct( false, $name = __( 'Inbox', 'bporg' ) );
 	}
 
+	/**
+	 * @global BuddyPress $bp BuddyPress global settings
+	 */
 	function widget( $args, $instance ) {
 		global $bp;
 
Index: public_html/wp-content/themes/codex-buddypress-org/widgets/login.php
===================================================================
--- public_html/wp-content/themes/codex-buddypress-org/widgets/login.php	(revision 12676)
+++ public_html/wp-content/themes/codex-buddypress-org/widgets/login.php	(working copy)
@@ -4,6 +4,9 @@
 		parent::__construct( false, $name = __( "Login Form", 'bporg' ) );
 	}
 
+	/**
+	 * @global BuddyPress $bp BuddyPress global settings
+	 */
 	function widget( $args, $instance ) {
 		global $bp;
 
