Index: content-category.php
===================================================================
--- content-category.php	(revision 12293)
+++ content-category.php	(working copy)
@@ -1,6 +1,9 @@
 <div class="jobs-group">
 
 <?php
+	/**
+	 * @global $category
+	 */
 	global $category;
 
 	$q = get_queried_object();
Index: content-home.php
===================================================================
--- content-home.php	(revision 12293)
+++ content-home.php	(working copy)
@@ -1,4 +1,7 @@
 <?php
+/**
+ * @global $category
+ */
 global $category;
 
 $job_categories = Jobs_Dot_WP::get_job_categories();
Index: content-list.php
===================================================================
--- content-list.php	(revision 12293)
+++ content-list.php	(working copy)
@@ -1,6 +1,9 @@
 <?php
 	$evenodd = 0;
 	if ( $posts ) {
+		/**
+		 * @global WP_Post $post Global post object.
+		 */
 		global $post;
 
 		foreach ( $posts as $post ) {
@@ -38,6 +41,9 @@
 
 	<?php	
 		if ( is_front_page() ) {
+			/**
+			 * @global $category
+			 */
 			global $category;
 			echo '<p class="all-job-categories">';
 			if ( ! $category )
Index: functions.php
===================================================================
--- functions.php	(revision 12293)
+++ functions.php	(working copy)
@@ -130,6 +130,7 @@
 
 /**
  * Sets 404 response for author archive requests.
+ * @global WP_Query $wp_query Query object.
  */
 function jobswp_author_archives_404() {
 	if ( is_author() ) {
@@ -146,6 +147,7 @@
  * Currently output for:
  * - empty job category archives
  * - search results
+ * @global WP_Query $wp_query Query object.
  */
 function jobswp_noindex() {
 	global $wp_query;
