Index: src/includes/common/classes.php
===================================================================
--- src/includes/common/classes.php	(revision 7009)
+++ src/includes/common/classes.php	(working copy)
@@ -30,27 +30,27 @@
 	 * @var string Unique name (for internal identification)
 	 * @internal
 	 */
-	var $name;
+	public $name;
 
 	/**
 	 * @var Unique ID (normally for custom post type)
 	 */
-	var $id;
+	public $id;
 
 	/**
 	 * @var string Unique slug (used in query string and permalinks)
 	 */
-	var $slug;
+	public $slug;
 
 	/**
 	 * @var WP_Query The loop for this component
 	 */
-	var $query;
+	public $query;
 
 	/**
 	 * @var string The current ID of the queried object
 	 */
-	var $current_id;
+	public $current_id;
 
 
 	/** Methods ***************************************************************/
