Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 23294)
+++ wp-includes/post-template.php	(working copy)
@@ -980,7 +980,7 @@
 	 * @since 2.1.0
 	 * @var string
 	 */
-	var $tree_type = 'page';
+	public $tree_type = 'page';
 
 	/**
 	 * @see Walker::$db_fields
@@ -988,7 +988,7 @@
 	 * @todo Decouple this.
 	 * @var array
 	 */
-	var $db_fields = array ('parent' => 'post_parent', 'id' => 'ID');
+	public $db_fields = array ('parent' => 'post_parent', 'id' => 'ID');
 
 	/**
 	 * @see Walker::start_lvl()
@@ -1088,7 +1088,7 @@
 	 * @since 2.1.0
 	 * @var string
 	 */
-	var $tree_type = 'page';
+	public $tree_type = 'page';
 
 	/**
 	 * @see Walker::$db_fields
@@ -1096,7 +1096,7 @@
 	 * @todo Decouple this
 	 * @var array
 	 */
-	var $db_fields = array ('parent' => 'post_parent', 'id' => 'ID');
+	public $db_fields = array ('parent' => 'post_parent', 'id' => 'ID');
 
 	/**
 	 * @see Walker::start_el()
Index: wp-includes/nav-menu-template.php
===================================================================
--- wp-includes/nav-menu-template.php	(revision 23294)
+++ wp-includes/nav-menu-template.php	(working copy)
@@ -20,7 +20,7 @@
 	 * @since 3.0.0
 	 * @var string
 	 */
-	var $tree_type = array( 'post_type', 'taxonomy', 'custom' );
+	public $tree_type = array( 'post_type', 'taxonomy', 'custom' );
 
 	/**
 	 * @see Walker::$db_fields
@@ -28,7 +28,7 @@
 	 * @todo Decouple this.
 	 * @var array
 	 */
-	var $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' );
+	public $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' );
 
 	/**
 	 * @see Walker::start_lvl()
Index: wp-includes/class-feed.php
===================================================================
--- wp-includes/class-feed.php	(revision 23294)
+++ wp-includes/class-feed.php	(working copy)
@@ -16,9 +16,9 @@
 }
 
 class WP_Feed_Cache_Transient {
-	var $name;
-	var $mod_name;
-	var $lifetime = 43200; //Default lifetime in cache of 12 hours
+	public $name;
+	public $mod_name;
+	public $lifetime = 43200; //Default lifetime in cache of 12 hours
 
 	function __construct($location, $filename, $extension) {
 		$this->name = 'feed_' . $filename;
Index: wp-includes/class-http.php
===================================================================
--- wp-includes/class-http.php	(revision 23294)
+++ wp-includes/class-http.php	(working copy)
@@ -1440,7 +1440,7 @@
 	 * @since 2.8.0
 	 * @var string
 	 */
-	var $name;
+	public $name;
 
 	/**
 	 * Cookie value.
@@ -1448,7 +1448,7 @@
 	 * @since 2.8.0
 	 * @var string
 	 */
-	var $value;
+	public $value;
 
 	/**
 	 * When the cookie expires.
@@ -1456,7 +1456,7 @@
 	 * @since 2.8.0
 	 * @var string
 	 */
-	var $expires;
+	public $expires;
 
 	/**
 	 * Cookie URL path.
@@ -1464,7 +1464,7 @@
 	 * @since 2.8.0
 	 * @var string
 	 */
-	var $path;
+	public $path;
 
 	/**
 	 * Cookie Domain.
@@ -1472,7 +1472,7 @@
 	 * @since 2.8.0
 	 * @var string
 	 */
-	var $domain;
+	public $domain;
 
 	/**
 	 * Sets up this cookie object.
Index: wp-includes/pomo/mo.php
===================================================================
--- wp-includes/pomo/mo.php	(revision 23294)
+++ wp-includes/pomo/mo.php	(working copy)
@@ -13,7 +13,7 @@
 if ( !class_exists( 'MO' ) ):
 class MO extends Gettext_Translations {
 
-	var $_nplurals = 2;
+	public $_nplurals = 2;
 
 	/**
 	 * Fills up with the entries from MO file $filename
Index: wp-includes/pomo/po.php
===================================================================
--- wp-includes/pomo/po.php	(revision 23294)
+++ wp-includes/pomo/po.php	(working copy)
@@ -19,7 +19,7 @@
 if ( !class_exists( 'PO' ) ):
 class PO extends Gettext_Translations {
 
-	var $comments_before_headers = '';
+	public $comments_before_headers = '';
 
 	/**
 	 * Exports headers to a PO entry
Index: wp-includes/pomo/streams.php
===================================================================
--- wp-includes/pomo/streams.php	(revision 23294)
+++ wp-includes/pomo/streams.php	(working copy)
@@ -11,8 +11,8 @@
 if ( !class_exists( 'POMO_Reader' ) ):
 class POMO_Reader {
 
-	var $endian = 'little';
-	var $_post = '';
+	public $endian = 'little';
+	public $_post = '';
 
 	function POMO_Reader() {
 		$this->is_overloaded = ((ini_get("mbstring.func_overload") & 2) != 0) && function_exists('mb_substr');
@@ -149,7 +149,7 @@
  */
 class POMO_StringReader extends POMO_Reader {
 
-	var $_str = '';
+	public $_str = '';
 
 	function POMO_StringReader($str = '') {
 		parent::POMO_Reader();
Index: wp-includes/pomo/entry.php
===================================================================
--- wp-includes/pomo/entry.php	(revision 23294)
+++ wp-includes/pomo/entry.php	(working copy)
@@ -18,16 +18,16 @@
 	 *
 	 * @var boolean
 	 */
-	var $is_plural = false;
+	public $is_plural = false;
 
-	var $context = null;
-	var $singular = null;
-	var $plural = null;
-	var $translations = array();
-	var $translator_comments = '';
-	var $extracted_comments = '';
-	var $references = array();
-	var $flags = array();
+	public $context = null;
+	public $singular = null;
+	public $plural = null;
+	public $translations = array();
+	public $translator_comments = '';
+	public $extracted_comments = '';
+	public $references = array();
+	public $flags = array();
 
 	/**
 	 * @param array $args associative array, support following keys:
Index: wp-includes/pomo/translations.php
===================================================================
--- wp-includes/pomo/translations.php	(revision 23294)
+++ wp-includes/pomo/translations.php	(working copy)
@@ -11,8 +11,8 @@
 
 if ( !class_exists( 'Translations' ) ):
 class Translations {
-	var $entries = array();
-	var $headers = array();
+	public $entries = array();
+	public $headers = array();
 
 	/**
 	 * Add entry to the PO structure
@@ -232,8 +232,8 @@
  * Provides the same interface as Translations, but doesn't do anything
  */
 class NOOP_Translations {
-	var $entries = array();
-	var $headers = array();
+	public $entries = array();
+	public $headers = array();
 
 	function add_entry($entry) {
 		return true;
Index: wp-includes/comment.php
===================================================================
--- wp-includes/comment.php	(revision 23294)
+++ wp-includes/comment.php	(working copy)
@@ -194,10 +194,9 @@
 	 * Metadata query container
 	 *
 	 * @since 3.5.0
-	 * @access public
 	 * @var object WP_Meta_Query
 	 */
-	var $meta_query = false;
+	public $meta_query = false;
 
 	/**
 	 * Execute the query
Index: wp-includes/class-wp-embed.php
===================================================================
--- wp-includes/class-wp-embed.php	(revision 23294)
+++ wp-includes/class-wp-embed.php	(working copy)
@@ -7,10 +7,10 @@
  * @since 2.9.0
  */
 class WP_Embed {
-	var $handlers = array();
-	var $post_ID;
-	var $usecache = true;
-	var $linkifunknown = true;
+	public $handlers = array();
+	public $post_ID;
+	public $usecache = true;
+	public $linkifunknown = true;
 
 	/**
 	 * Constructor
Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 23294)
+++ wp-includes/comment-template.php	(working copy)
@@ -1220,14 +1220,14 @@
 	 * @since 2.7.0
 	 * @var string
 	 */
-	var $tree_type = 'comment';
+	public $tree_type = 'comment';
 
 	/**
 	 * @see Walker::$db_fields
 	 * @since 2.7.0
 	 * @var array
 	 */
-	var $db_fields = array ('parent' => 'comment_parent', 'id' => 'comment_ID');
+	public $db_fields = array ('parent' => 'comment_parent', 'id' => 'comment_ID');
 
 	/**
 	 * @see Walker::start_lvl()
Index: wp-includes/class.wp-styles.php
===================================================================
--- wp-includes/class.wp-styles.php	(revision 23294)
+++ wp-includes/class.wp-styles.php	(working copy)
@@ -17,16 +17,16 @@
  * @since r74
  */
 class WP_Styles extends WP_Dependencies {
-	var $base_url;
-	var $content_url;
-	var $default_version;
-	var $text_direction = 'ltr';
-	var $concat = '';
-	var $concat_version = '';
-	var $do_concat = false;
-	var $print_html = '';
-	var $print_code = '';
-	var $default_dirs;
+	public $base_url;
+	public $content_url;
+	public $default_version;
+	public $text_direction = 'ltr';
+	public $concat = '';
+	public $concat_version = '';
+	public $do_concat = false;
+	public $print_html = '';
+	public $print_code = '';
+	public $default_dirs;
 
 	function __construct() {
 		do_action_ref_array( 'wp_default_styles', array(&$this) );
Index: wp-includes/class.wp-dependencies.php
===================================================================
--- wp-includes/class.wp-dependencies.php	(revision 23294)
+++ wp-includes/class.wp-dependencies.php	(working copy)
@@ -17,13 +17,13 @@
  * @since r74
  */
 class WP_Dependencies {
-	var $registered = array();
-	var $queue = array();
-	var $to_do = array();
-	var $done = array();
-	var $args = array();
-	var $groups = array();
-	var $group = 0;
+	public $registered = array();
+	public $queue = array();
+	public $to_do = array();
+	public $done = array();
+	public $args = array();
+	public $groups = array();
+	public $group = 0;
 
 	/**
 	 * Do the dependencies
@@ -238,13 +238,13 @@
 }
 
 class _WP_Dependency {
-	var $handle;
-	var $src;
-	var $deps = array();
-	var $ver = false;
-	var $args = null;
+	public $handle;
+	public $src;
+	public $deps = array();
+	public $ver = false;
+	public $args = null;
 
-	var $extra = array();
+	public $extra = array();
 
 	function __construct() {
 		@list( $this->handle, $this->src, $this->deps, $this->ver, $this->args ) = func_get_args();
Index: wp-includes/user.php
===================================================================
--- wp-includes/user.php	(revision 23294)
+++ wp-includes/user.php	(working copy)
@@ -318,10 +318,9 @@
 	 * Query vars, after parsing
 	 *
 	 * @since 3.5.0
-	 * @access public
 	 * @var array
 	 */
-	var $query_vars = array();
+	public $query_vars = array();
 
 	/**
 	 * List of found user ids
@@ -342,11 +341,11 @@
 	var $total_users = 0;
 
 	// SQL clauses
-	var $query_fields;
-	var $query_from;
-	var $query_where;
-	var $query_orderby;
-	var $query_limit;
+	public $query_fields;
+	public $query_from;
+	public $query_where;
+	public $query_orderby;
+	public $query_limit;
 
 	/**
 	 * PHP5 constructor
Index: wp-includes/class.wp-scripts.php
===================================================================
--- wp-includes/class.wp-scripts.php	(revision 23294)
+++ wp-includes/class.wp-scripts.php	(working copy)
@@ -17,18 +17,18 @@
  * @since r16
  */
 class WP_Scripts extends WP_Dependencies {
-	var $base_url; // Full URL with trailing slash
-	var $content_url;
-	var $default_version;
-	var $in_footer = array();
-	var $concat = '';
-	var $concat_version = '';
-	var $do_concat = false;
-	var $print_html = '';
-	var $print_code = '';
-	var $ext_handles = '';
-	var $ext_version = '';
-	var $default_dirs;
+	public $base_url; // Full URL with trailing slash
+	public $content_url;
+	public $default_version;
+	public $in_footer = array();
+	public $concat = '';
+	public $concat_version = '';
+	public $do_concat = false;
+	public $print_html = '';
+	public $print_code = '';
+	public $ext_handles = '';
+	public $ext_version = '';
+	public $default_dirs;
 
 	function __construct() {
 		$this->init();
Index: wp-includes/cache.php
===================================================================
--- wp-includes/cache.php	(revision 23294)
+++ wp-includes/cache.php	(working copy)
@@ -282,10 +282,9 @@
 	 * Amount of times the cache did not have the request in cache
 	 *
 	 * @var int
-	 * @access public
 	 * @since 2.0.0
 	 */
-	var $cache_misses = 0;
+	public $cache_misses = 0;
 
 	/**
 	 * List of global groups
Index: wp-includes/query.php
===================================================================
--- wp-includes/query.php	(revision 23294)
+++ wp-includes/query.php	(working copy)
@@ -834,37 +834,33 @@
 	 * Query vars set by the user
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var array
 	 */
-	var $query;
+	public $query;
 
 	/**
 	 * Query vars, after parsing
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var array
 	 */
-	var $query_vars = array();
+	public $query_vars = array();
 
 	/**
 	 * Taxonomy query, as passed to get_tax_sql()
 	 *
 	 * @since 3.1.0
-	 * @access public
 	 * @var object WP_Tax_Query
 	 */
-	var $tax_query;
+	public $tax_query;
 
 	/**
 	 * Metadata query container
 	 *
 	 * @since 3.2.0
-	 * @access public
 	 * @var object WP_Meta_Query
 	 */
-	var $meta_query = false;
+	public $meta_query = false;
 
 	/**
 	 * Holds the data for a single object that is queried.
@@ -872,109 +868,97 @@
 	 * Holds the contents of a post, page, category, attachment.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var object|array
 	 */
-	var $queried_object;
+	public $queried_object;
 
 	/**
 	 * The ID of the queried object.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var int
 	 */
-	var $queried_object_id;
+	public $queried_object_id;
 
 	/**
 	 * Get post database query.
 	 *
 	 * @since 2.0.1
-	 * @access public
 	 * @var string
 	 */
-	var $request;
+	public $request;
 
 	/**
 	 * List of posts.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var array
 	 */
-	var $posts;
+	public $posts;
 
 	/**
 	 * The amount of posts for the current query.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var int
 	 */
-	var $post_count = 0;
+	public $post_count = 0;
 
 	/**
 	 * Index of the current item in the loop.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var int
 	 */
-	var $current_post = -1;
+	public $current_post = -1;
 
 	/**
 	 * Whether the loop has started and the caller is in the loop.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var bool
 	 */
-	var $in_the_loop = false;
+	public $in_the_loop = false;
 
 	/**
 	 * The current post ID.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var object
 	 */
-	var $post;
+	public $post;
 
 	/**
 	 * The list of comments for current post.
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var array
 	 */
-	var $comments;
+	public $comments;
 
 	/**
 	 * The amount of comments for the posts.
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var int
 	 */
-	var $comment_count = 0;
+	public $comment_count = 0;
 
 	/**
 	 * The index of the comment in the comment loop.
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var int
 	 */
-	var $current_comment = -1;
+	public $current_comment = -1;
 
 	/**
 	 * Current comment ID.
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var int
 	 */
-	var $comment;
+	public $comment;
 
 	/**
 	 * The amount of found posts for the current query.
@@ -982,19 +966,17 @@
 	 * If limit clause was not used, equals $post_count.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var int
 	 */
-	var $found_posts = 0;
+	public $found_posts = 0;
 
 	/**
 	 * The amount of pages.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var int
 	 */
-	var $max_num_pages = 0;
+	public $max_num_pages = 0;
 
 	/**
 	 * The amount of comment pages.
@@ -1003,232 +985,207 @@
 	 * @access public
 	 * @var int
 	 */
-	var $max_num_comment_pages = 0;
+	public $max_num_comment_pages = 0;
 
 	/**
 	 * Set if query is single post.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_single = false;
+	public $is_single = false;
 
 	/**
 	 * Set if query is preview of blog.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_preview = false;
+	public $is_preview = false;
 
 	/**
 	 * Set if query returns a page.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_page = false;
+	public $is_page = false;
 
 	/**
 	 * Set if query is an archive list.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_archive = false;
+	public $is_archive = false;
 
 	/**
 	 * Set if query is part of a date.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_date = false;
+	public $is_date = false;
 
 	/**
 	 * Set if query contains a year.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_year = false;
+	public $is_year = false;
 
 	/**
 	 * Set if query contains a month.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_month = false;
+	public $is_month = false;
 
 	/**
 	 * Set if query contains a day.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_day = false;
+	public $is_day = false;
 
 	/**
 	 * Set if query contains time.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_time = false;
+	public $is_time = false;
 
 	/**
 	 * Set if query contains an author.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_author = false;
+	public $is_author = false;
 
 	/**
 	 * Set if query contains category.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_category = false;
+	public $is_category = false;
 
 	/**
 	 * Set if query contains tag.
 	 *
 	 * @since 2.3.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_tag = false;
+	public $is_tag = false;
 
 	/**
 	 * Set if query contains taxonomy.
 	 *
 	 * @since 2.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_tax = false;
+	public $is_tax = false;
 
 	/**
 	 * Set if query was part of a search result.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_search = false;
+	public $is_search = false;
 
 	/**
 	 * Set if query is feed display.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_feed = false;
+	public $is_feed = false;
 
 	/**
 	 * Set if query is comment feed display.
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_comment_feed = false;
+	public $is_comment_feed = false;
 
 	/**
 	 * Set if query is trackback.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_trackback = false;
+	public $is_trackback = false;
 
 	/**
 	 * Set if query is blog homepage.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_home = false;
+	public $is_home = false;
 
 	/**
 	 * Set if query couldn't found anything.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_404 = false;
+	public $is_404 = false;
 
 	/**
 	 * Set if query is within comments popup window.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_comments_popup = false;
+	public $is_comments_popup = false;
 
 	/**
 	 * Set if query is paged
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_paged = false;
+	public $is_paged = false;
 
 	/**
 	 * Set if query is part of administration page.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_admin = false;
+	public $is_admin = false;
 
 	/**
 	 * Set if query is an attachment.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_attachment = false;
+	public $is_attachment = false;
 
 	/**
 	 * Set if is single, is a page, or is an attachment.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_singular = false;
+	public $is_singular = false;
 
 	/**
 	 * Set if query is for robots.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_robots = false;
+	public $is_robots = false;
 
 	/**
 	 * Set if query contains posts.
@@ -1236,19 +1193,17 @@
 	 * Basically, the homepage if the option isn't set for the static homepage.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_posts_page = false;
+	public $is_posts_page = false;
 
 	/**
 	 * Set if query is for a post type archive.
 	 *
 	 * @since 3.1.0
-	 * @access public
 	 * @var bool
 	 */
-	var $is_post_type_archive = false;
+	public $is_post_type_archive = false;
 
 	/**
 	 * Stores the ->query_vars state like md5(serialize( $this->query_vars ) ) so we know
@@ -1272,10 +1227,9 @@
 	 * Set if post thumbnails are cached
 	 *
 	 * @since 3.2.0
-	 * @access public
 	 * @var bool
 	 */
-	 var $thumbnails_cached = false;
+	 public $thumbnails_cached = false;
 
 	/**
 	 * Resets query flags to false.
Index: wp-includes/wp-db.php
===================================================================
--- wp-includes/wp-db.php	(revision 23294)
+++ wp-includes/wp-db.php	(working copy)
@@ -74,7 +74,7 @@
 	 * @since 2.5.0
 	 * @var string
 	 */
-	var $last_error = '';
+	public $last_error = '';
 
 	/**
 	 * Amount of queries made
@@ -107,10 +107,9 @@
 	 * The ID generated for an AUTO_INCREMENT column by the previous query (usually INSERT).
 	 *
 	 * @since 0.71
-	 * @access public
 	 * @var int
 	 */
-	var $insert_id = 0;
+	public $insert_id = 0;
 
 	/**
 	 * Last query made
@@ -186,7 +185,7 @@
 	 * @access public
 	 * @var int
 	 */
-	var $blogid = 0;
+	public $blogid = 0;
 
 	/**
 	 * {@internal Missing Description}}
@@ -195,7 +194,7 @@
 	 * @access public
 	 * @var int
 	 */
-	var $siteid = 0;
+	public $siteid = 0;
 
 	/**
 	 * List of WordPress per-blog tables
@@ -245,82 +244,73 @@
 	 * WordPress Comments table
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $comments;
+	public $comments;
 
 	/**
 	 * WordPress Comment Metadata table
 	 *
 	 * @since 2.9.0
-	 * @access public
 	 * @var string
 	 */
-	var $commentmeta;
+	public $commentmeta;
 
 	/**
 	 * WordPress Links table
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $links;
+	public $links;
 
 	/**
 	 * WordPress Options table
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $options;
+	public $options;
 
 	/**
 	 * WordPress Post Metadata table
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $postmeta;
+	public $postmeta;
 
 	/**
 	 * WordPress Posts table
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $posts;
+	public $posts;
 
 	/**
 	 * WordPress Terms table
 	 *
 	 * @since 2.3.0
-	 * @access public
 	 * @var string
 	 */
-	var $terms;
+	public $terms;
 
 	/**
 	 * WordPress Term Relationships table
 	 *
 	 * @since 2.3.0
-	 * @access public
 	 * @var string
 	 */
-	var $term_relationships;
+	public $term_relationships;
 
 	/**
 	 * WordPress Term Taxonomy table
 	 *
 	 * @since 2.3.0
-	 * @access public
 	 * @var string
 	 */
-	var $term_taxonomy;
+	public $term_taxonomy;
 
 	/*
 	 * Global and Multisite tables
@@ -330,82 +320,73 @@
 	 * WordPress User Metadata table
 	 *
 	 * @since 2.3.0
-	 * @access public
 	 * @var string
 	 */
-	var $usermeta;
+	public $usermeta;
 
 	/**
 	 * WordPress Users table
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $users;
+	public $users;
 
 	/**
 	 * Multisite Blogs table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $blogs;
+	public $blogs;
 
 	/**
 	 * Multisite Blog Versions table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $blog_versions;
+	public $blog_versions;
 
 	/**
 	 * Multisite Registration Log table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $registration_log;
+	public $registration_log;
 
 	/**
 	 * Multisite Signups table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $signups;
+	public $signups;
 
 	/**
 	 * Multisite Sites table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $site;
+	public $site;
 
 	/**
 	 * Multisite Sitewide Terms table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $sitecategories;
+	public $sitecategories;
 
 	/**
 	 * Multisite Site Metadata table
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $sitemeta;
+	public $sitemeta;
 
 	/**
 	 * Format specifiers for DB columns. Columns not listed here default to %s. Initialized during WP load.
@@ -418,37 +399,33 @@
 	 * @see wpdb::update()
 	 * @see wpdb::delete()
 	 * @see wp_set_wpdb_vars()
-	 * @access public
 	 * @var array
 	 */
-	var $field_types = array();
+	public $field_types = array();
 
 	/**
 	 * Database table columns charset
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var string
 	 */
-	var $charset;
+	public $charset;
 
 	/**
 	 * Database table columns collate
 	 *
 	 * @since 2.2.0
-	 * @access public
 	 * @var string
 	 */
-	var $collate;
+	public $collate;
 
 	/**
 	 * Whether to use mysql_real_escape_string
 	 *
 	 * @since 2.8.0
-	 * @access public
 	 * @var bool
 	 */
-	var $real_escape = false;
+	public $real_escape = false;
 
 	/**
 	 * Database Username
@@ -499,10 +476,9 @@
 	 * A textual description of the last query/get_row/get_var call
 	 *
 	 * @since 3.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $func_call;
+	public $func_call;
 
 	/**
 	 * Whether MySQL is used as the database engine.
@@ -513,7 +489,6 @@
 	 * will force the checks to occur.
 	 *
 	 * @since 3.3.0
-	 * @access public
 	 * @var bool
 	 */
 	public $is_mysql = null;
Index: wp-includes/class-wp-walker.php
===================================================================
--- wp-includes/class-wp-walker.php	(revision 23294)
+++ wp-includes/class-wp-walker.php	(working copy)
@@ -18,9 +18,8 @@
 	 *
 	 * @since 2.1.0
 	 * @var string
-	 * @access public
 	 */
-	var $tree_type;
+	public $tree_type;
 
 	/**
 	 * DB fields to use.
Index: wp-includes/rewrite.php
===================================================================
--- wp-includes/rewrite.php	(revision 23294)
+++ wp-includes/rewrite.php	(working copy)
@@ -542,10 +542,9 @@
 	 * The name of the index file which is the entry point to all requests.
 	 *
 	 * @since 1.5.0
-	 * @access public
 	 * @var string
 	 */
-	var $index = 'index.php';
+	public $index = 'index.php';
 
 	/**
 	 * Variable name to use for regex matches in the rewritten query.
@@ -625,10 +624,9 @@
 	 *
 	 * @see WP_Rewrite::mod_rewrite_rules()
 	 * @since 2.0.0
-	 * @access public
 	 * @var bool
 	 */
-	var $use_verbose_rules = false;
+	public $use_verbose_rules = false;
 
 	/**
 	 * Could post permalinks be confused with those of pages?
@@ -643,10 +641,9 @@
 	 * @link http://core.trac.wordpress.org/ticket/16687
 	 * @see WP_Rewrite::init()
 	 * @since 2.5.0
-	 * @access public
 	 * @var bool
 	 */
-	var $use_verbose_page_rules = true;
+	public $use_verbose_page_rules = true;
 
 	/**
 	 * Rewrite tags that can be used in permalink structures.
Index: wp-includes/atomlib.php
===================================================================
--- wp-includes/atomlib.php	(revision 23294)
+++ wp-includes/atomlib.php	(working copy)
@@ -19,22 +19,19 @@
 	/**
 	 * Stores Links
 	 * @var array
-	 * @access public
 	 */
-    var $links = array();
+    public $links = array();
     /**
      * Stores Categories
      * @var array
-     * @access public
      */
-    var $categories = array();
+    public $categories = array();
 	/**
 	 * Stores Entries
 	 *
 	 * @var array
-	 * @access public
 	 */
-    var $entries = array();
+    public $entries = array();
 }
 
 /**
@@ -48,13 +45,13 @@
 	 * @var array
 	 * @access public
 	 */
-    var $links = array();
+    public $links = array();
     /**
      * Stores Categories
      * @var array
 	 * @access public
      */
-    var $categories = array();
+    public $categories = array();
 }
 
 /**
@@ -64,28 +61,28 @@
  */
 class AtomParser {
 
-    var $NS = 'http://www.w3.org/2005/Atom';
-    var $ATOM_CONTENT_ELEMENTS = array('content','summary','title','subtitle','rights');
-    var $ATOM_SIMPLE_ELEMENTS = array('id','updated','published','draft');
+    public $NS = 'http://www.w3.org/2005/Atom';
+    public $ATOM_CONTENT_ELEMENTS = array('content','summary','title','subtitle','rights');
+    public $ATOM_SIMPLE_ELEMENTS = array('id','updated','published','draft');
 
-    var $debug = false;
+    public $debug = false;
 
-    var $depth = 0;
-    var $indent = 2;
-    var $in_content;
-    var $ns_contexts = array();
-    var $ns_decls = array();
-    var $content_ns_decls = array();
-    var $content_ns_contexts = array();
-    var $is_xhtml = false;
-    var $is_html = false;
-    var $is_text = true;
-    var $skipped_div = false;
+    public $depth = 0;
+    public $indent = 2;
+    public $in_content;
+    public $ns_contexts = array();
+    public $ns_decls = array();
+    public $content_ns_decls = array();
+    public $content_ns_contexts = array();
+    public $is_xhtml = false;
+    public $is_html = false;
+    public $is_text = true;
+    public $skipped_div = false;
 
-    var $FILE = "php://input";
+    public $FILE = "php://input";
 
-    var $feed;
-    var $current;
+    public $feed;
+    public $current;
 
     function AtomParser() {
 
Index: wp-includes/class-wp.php
===================================================================
--- wp-includes/class-wp.php	(revision 23294)
+++ wp-includes/class-wp.php	(working copy)
@@ -12,10 +12,9 @@
 	 * Long list of public query variables.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $public_query_vars = array('m', 'p', 'posts', 'w', 'cat', 'withcomments', 'withoutcomments', 's', 'search', 'exact', 'sentence', 'calendar', 'page', 'paged', 'more', 'tb', 'pb', 'author', 'order', 'orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'comments_popup', 'attachment', 'attachment_id', 'subpost', 'subpost_id', 'preview', 'robots', 'taxonomy', 'term', 'cpage', 'post_type');
+	public $public_query_vars = array('m', 'p', 'posts', 'w', 'cat', 'withcomments', 'withoutcomments', 's', 'search', 'exact', 'sentence', 'calendar', 'page', 'paged', 'more', 'tb', 'pb', 'author', 'order', 'orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'comments_popup', 'attachment', 'attachment_id', 'subpost', 'subpost_id', 'preview', 'robots', 'taxonomy', 'term', 'cpage', 'post_type');
 
 	/**
 	 * Private query variables.
@@ -25,7 +24,7 @@
 	 * @since 2.0.0
 	 * @var array
 	 */
-	var $private_query_vars = array('offset', 'posts_per_page', 'posts_per_archive_page', 'showposts', 'nopaging', 'post_type', 'post_status', 'category__in', 'category__not_in', 'category__and', 'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and', 'tag_id', 'post_mime_type', 'perm', 'comments_per_page', 'post__in', 'post__not_in');
+	public $private_query_vars = array('offset', 'posts_per_page', 'posts_per_archive_page', 'showposts', 'nopaging', 'post_type', 'post_status', 'category__in', 'category__not_in', 'category__and', 'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and', 'tag_id', 'post_mime_type', 'perm', 'comments_per_page', 'post__in', 'post__not_in');
 
 	/**
 	 * Extra query variables set by the user.
@@ -33,7 +32,7 @@
 	 * @since 2.1.0
 	 * @var array
 	 */
-	var $extra_query_vars = array();
+	public $extra_query_vars = array();
 
 	/**
 	 * Query variables for setting up the WordPress Query Loop.
@@ -41,7 +40,7 @@
 	 * @since 2.0.0
 	 * @var array
 	 */
-	var $query_vars;
+	public $query_vars;
 
 	/**
 	 * String parsed to set the query variables.
@@ -49,7 +48,7 @@
 	 * @since 2.0.0
 	 * @var string
 	 */
-	var $query_string;
+	public $query_string;
 
 	/**
 	 * Permalink or requested URI.
@@ -57,7 +56,7 @@
 	 * @since 2.0.0
 	 * @var string
 	 */
-	var $request;
+	public $request;
 
 	/**
 	 * Rewrite rule the request matched.
@@ -65,7 +64,7 @@
 	 * @since 2.0.0
 	 * @var string
 	 */
-	var $matched_rule;
+	public $matched_rule;
 
 	/**
 	 * Rewrite query the request matched.
@@ -73,7 +72,7 @@
 	 * @since 2.0.0
 	 * @var string
 	 */
-	var $matched_query;
+	public $matched_query;
 
 	/**
 	 * Whether already did the permalink.
@@ -81,7 +80,7 @@
 	 * @since 2.0.0
 	 * @var bool
 	 */
-	var $did_permalink = false;
+	public $did_permalink = false;
 
 	/**
 	 * Add name to list of public query variables.
@@ -574,7 +573,7 @@
 	 * @access public
 	 * @var string
 	 */
-	var $output;
+	public $output;
 
 	/**
 	 * subject to perform mapping on (query string containing $matches[] references
@@ -589,7 +588,7 @@
 	 *
 	 * @var string
 	 */
-	var $_pattern = '(\$matches\[[1-9]+[0-9]*\])'; // magic number
+	public $_pattern = '(\$matches\[[1-9]+[0-9]*\])'; // magic number
 
 	/**
 	 * constructor
Index: wp-includes/capabilities.php
===================================================================
--- wp-includes/capabilities.php	(revision 23294)
+++ wp-includes/capabilities.php	(working copy)
@@ -31,46 +31,41 @@
 	 * List of roles and capabilities.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $roles;
+	public $roles;
 
 	/**
 	 * List of the role objects.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $role_objects = array();
+	public $role_objects = array();
 
 	/**
 	 * List of role names.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $role_names = array();
+	public $role_names = array();
 
 	/**
 	 * Option name for storing role list.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $role_key;
+	public $role_key;
 
 	/**
 	 * Whether to use the database for retrieval and storage.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var bool
 	 */
-	var $use_db = true;
+	public $use_db = true;
 
 	/**
 	 * Constructor
@@ -286,19 +281,17 @@
 	 * Role name.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $name;
+	public $name;
 
 	/**
 	 * List of capabilities the role contains.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $capabilities;
+	public $capabilities;
 
 	/**
 	 * Constructor - Set up object properties.
@@ -405,46 +398,41 @@
 	 * The user's ID.
 	 *
 	 * @since 2.1.0
-	 * @access public
 	 * @var int
 	 */
-	var $ID = 0;
+	public $ID = 0;
 
 	/**
 	 * The individual capabilities the user has been given.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $caps = array();
+	public $caps = array();
 
 	/**
 	 * User metadata option name.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var string
 	 */
-	var $cap_key;
+	public $cap_key;
 
 	/**
 	 * The roles the user is part of.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $roles = array();
+	public $roles = array();
 
 	/**
 	 * All capabilities the user has, including individual and role based.
 	 *
 	 * @since 2.0.0
-	 * @access public
 	 * @var array
 	 */
-	var $allcaps = array();
+	public $allcaps = array();
 
 	/**
 	 * The filter context applied to user data fields.
Index: wp-includes/class-oembed.php
===================================================================
--- wp-includes/class-oembed.php	(revision 23294)
+++ wp-includes/class-oembed.php	(working copy)
@@ -18,7 +18,7 @@
  * @since 2.9.0
  */
 class WP_oEmbed {
-	var $providers = array();
+	public $providers = array();
 
 	/**
 	 * Constructor
Index: wp-includes/widgets.php
===================================================================
--- wp-includes/widgets.php	(revision 23294)
+++ wp-includes/widgets.php	(working copy)
@@ -23,14 +23,14 @@
  */
 class WP_Widget {
 
-	var $id_base;			// Root id for all widgets of this type.
-	var $name;				// Name for this widget type.
-	var $widget_options;	// Option array passed to wp_register_sidebar_widget()
-	var $control_options;	// Option array passed to wp_register_widget_control()
+	public $id_base;			// Root id for all widgets of this type.
+	public $name;				// Name for this widget type.
+	public $widget_options;	// Option array passed to wp_register_sidebar_widget()
+	public $control_options;	// Option array passed to wp_register_widget_control()
 
-	var $number = false;	// Unique ID number of the current instance.
-	var $id = false;		// Unique ID string of the current instance (id_base-number)
-	var $updated = false;	// Set true when we update the data after a POST submit - makes sure we don't do it twice.
+	public $number = false;	// Unique ID number of the current instance.
+	public $id = false;		// Unique ID string of the current instance (id_base-number)
+	public $updated = false;	// Set true when we update the data after a POST submit - makes sure we don't do it twice.
 
 	// Member functions that you must over-ride.
 
@@ -314,7 +314,7 @@
  * @since 2.8
  */
 class WP_Widget_Factory {
-	var $widgets = array();
+	public $widgets = array();
 
 	function WP_Widget_Factory() {
 		add_action( 'widgets_init', array( $this, '_register_widgets' ), 100 );
Index: wp-includes/category-template.php
===================================================================
--- wp-includes/category-template.php	(revision 23294)
+++ wp-includes/category-template.php	(working copy)
@@ -914,7 +914,7 @@
 	 * @since 2.1.0
 	 * @var string
 	 */
-	var $tree_type = 'category';
+	public $tree_type = 'category';
 
 	/**
 	 * @see Walker::$db_fields
@@ -922,7 +922,7 @@
 	 * @todo Decouple this
 	 * @var array
 	 */
-	var $db_fields = array ('parent' => 'parent', 'id' => 'term_id');
+	public $db_fields = array ('parent' => 'parent', 'id' => 'term_id');
 
 	/**
 	 * @see Walker::start_el()
Index: wp-admin/includes/class-wp-terms-list-table.php
===================================================================
--- wp-admin/includes/class-wp-terms-list-table.php	(revision 23294)
+++ wp-admin/includes/class-wp-terms-list-table.php	(working copy)
@@ -9,7 +9,7 @@
  */
 class WP_Terms_List_Table extends WP_List_Table {
 
-	var $callback_args;
+	public $callback_args;
 
 	function __construct( $args = array() ) {
 		global $post_type, $taxonomy, $action, $tax;
Index: wp-admin/includes/class-wp-filesystem-base.php
===================================================================
--- wp-admin/includes/class-wp-filesystem-base.php	(revision 23294)
+++ wp-admin/includes/class-wp-filesystem-base.php	(working copy)
@@ -16,10 +16,9 @@
 	 * Whether to display debug data for the connection.
 	 *
 	 * @since 2.5
-	 * @access public
 	 * @var bool
 	 */
-	var $verbose = false;
+	public $verbose = false;
 	/**
 	 * Cached list of local filepaths to mapped remote filepaths.
 	 *
@@ -33,10 +32,9 @@
 	 * The Access method of the current connection, Set automatically.
 	 *
 	 * @since 2.5
-	 * @access public
 	 * @var string
 	 */
-	var $method = '';
+	public $method = '';
 
 	/**
 	 * Returns the path on the remote filesystem of ABSPATH
Index: wp-admin/includes/class-wp-users-list-table.php
===================================================================
--- wp-admin/includes/class-wp-users-list-table.php	(revision 23294)
+++ wp-admin/includes/class-wp-users-list-table.php	(working copy)
@@ -9,8 +9,8 @@
  */
 class WP_Users_List_Table extends WP_List_Table {
 
-	var $site_id;
-	var $is_site_users;
+	public $site_id;
+	public $is_site_users;
 
 	function __construct( $args = array() ) {
 		parent::__construct( array(
Index: wp-admin/includes/class-wp-ms-themes-list-table.php
===================================================================
--- wp-admin/includes/class-wp-ms-themes-list-table.php	(revision 23294)
+++ wp-admin/includes/class-wp-ms-themes-list-table.php	(working copy)
@@ -9,8 +9,8 @@
  */
 class WP_MS_Themes_List_Table extends WP_List_Table {
 
-	var $site_id;
-	var $is_site_themes;
+	public $site_id;
+	public $is_site_themes;
 
 	function __construct( $args = array() ) {
 		global $status, $page;
Index: wp-admin/includes/class-wp-theme-install-list-table.php
===================================================================
--- wp-admin/includes/class-wp-theme-install-list-table.php	(revision 23294)
+++ wp-admin/includes/class-wp-theme-install-list-table.php	(working copy)
@@ -9,7 +9,7 @@
  */
 class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
 
-	var $features = array();
+	public $features = array();
 
 	function ajax_user_can() {
 		return current_user_can( 'install_themes' );
Index: wp-admin/includes/class-wp-filesystem-ftpsockets.php
===================================================================
--- wp-admin/includes/class-wp-filesystem-ftpsockets.php	(revision 23294)
+++ wp-admin/includes/class-wp-filesystem-ftpsockets.php	(working copy)
@@ -15,9 +15,9 @@
  * @uses WP_Filesystem_Base Extends class
  */
 class WP_Filesystem_ftpsockets extends WP_Filesystem_Base {
-	var $ftp = false;
-	var $errors = null;
-	var $options = array();
+	public $ftp = false;
+	public $errors = null;
+	public $options = array();
 
 	function __construct($opt = '') {
 		$this->method = 'ftpsockets';
Index: wp-admin/includes/class-wp-upgrader.php
===================================================================
--- wp-admin/includes/class-wp-upgrader.php	(revision 23294)
+++ wp-admin/includes/class-wp-upgrader.php	(working copy)
@@ -21,9 +21,9 @@
  * @since 2.8.0
  */
 class WP_Upgrader {
-	var $strings = array();
-	var $skin = null;
-	var $result = array();
+	public $strings = array();
+	public $skin = null;
+	public $result = array();
 
 	function __construct($skin = null) {
 		if ( null == $skin )
@@ -365,9 +365,9 @@
  */
 class Plugin_Upgrader extends WP_Upgrader {
 
-	var $result;
-	var $bulk = false;
-	var $show_before = '';
+	public $result;
+	public $bulk = false;
+	public $show_before = '';
 
 	function upgrade_strings() {
 		$this->strings['up_to_date'] = __('The plugin is at the latest version.');
@@ -642,8 +642,8 @@
  */
 class Theme_Upgrader extends WP_Upgrader {
 
-	var $result;
-	var $bulk = false;
+	public $result;
+	public $bulk = false;
 
 	function upgrade_strings() {
 		$this->strings['up_to_date'] = __('The theme is at the latest version.');
@@ -1083,9 +1083,9 @@
  */
 class WP_Upgrader_Skin {
 
-	var $upgrader;
-	var $done_header = false;
-	var $result = false;
+	public $upgrader;
+	public $done_header = false;
+	public $result = false;
 
 	function __construct($args = array()) {
 		$defaults = array( 'url' => '', 'nonce' => '', 'title' => '', 'context' => false );
@@ -1169,9 +1169,9 @@
  * @since 2.8.0
  */
 class Plugin_Upgrader_Skin extends WP_Upgrader_Skin {
-	var $plugin = '';
-	var $plugin_active = false;
-	var $plugin_network_active = false;
+	public $plugin = '';
+	public $plugin_active = false;
+	public $plugin_network_active = false;
 
 	function __construct($args = array()) {
 		$defaults = array( 'url' => '', 'plugin' => '', 'nonce' => '', 'title' => __('Update Plugin') );
@@ -1219,8 +1219,8 @@
  * @since 3.0.0
  */
 class Bulk_Upgrader_Skin extends WP_Upgrader_Skin {
-	var $in_loop = false;
-	var $error = false;
+	public $in_loop = false;
+	public $error = false;
 
 	function __construct($args = array()) {
 		$defaults = array( 'url' => '', 'nonce' => '' );
@@ -1325,7 +1325,7 @@
 }
 
 class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin {
-	var $plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in.
+	public $plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in.
 
 	function __construct($args = array()) {
 		parent::__construct($args);
@@ -1359,7 +1359,7 @@
 }
 
 class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin {
-	var $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
+	public $theme_info = array(); // Theme_Upgrader::bulk() will fill this in.
 
 	function __construct($args = array()) {
 		parent::__construct($args);
@@ -1403,8 +1403,8 @@
  * @since 2.8.0
  */
 class Plugin_Installer_Skin extends WP_Upgrader_Skin {
-	var $api;
-	var $type;
+	public $api;
+	public $type;
 
 	function __construct($args = array()) {
 		$defaults = array( 'type' => 'web', 'url' => '', 'plugin' => '', 'nonce' => '', 'title' => '' );
@@ -1468,8 +1468,8 @@
  * @since 2.8.0
  */
 class Theme_Installer_Skin extends WP_Upgrader_Skin {
-	var $api;
-	var $type;
+	public $api;
+	public $type;
 
 	function __construct($args = array()) {
 		$defaults = array( 'type' => 'web', 'url' => '', 'theme' => '', 'nonce' => '', 'title' => '' );
@@ -1543,7 +1543,7 @@
  * @since 2.8.0
  */
 class Theme_Upgrader_Skin extends WP_Upgrader_Skin {
-	var $theme = '';
+	public $theme = '';
 
 	function __construct($args = array()) {
 		$defaults = array( 'url' => '', 'theme' => '', 'nonce' => '', 'title' => __('Update Theme') );
@@ -1606,9 +1606,9 @@
  * @since 2.8.0
  */
 class File_Upload_Upgrader {
-	var $package;
-	var $filename;
-	var $id = 0;
+	public $package;
+	public $filename;
+	public $id = 0;
 
 	function __construct($form, $urlholder) {
 
Index: wp-admin/includes/class-wp-themes-list-table.php
===================================================================
--- wp-admin/includes/class-wp-themes-list-table.php	(revision 23294)
+++ wp-admin/includes/class-wp-themes-list-table.php	(working copy)
@@ -10,7 +10,7 @@
 class WP_Themes_List_Table extends WP_List_Table {
 
 	protected $search_terms = array();
-	var $features = array();
+	public $features = array();
 
 	function __construct( $args = array() ) {
 		parent::__construct( array(
Index: wp-admin/includes/class-wp-comments-list-table.php
===================================================================
--- wp-admin/includes/class-wp-comments-list-table.php	(revision 23294)
+++ wp-admin/includes/class-wp-comments-list-table.php	(working copy)
@@ -17,9 +17,9 @@
  */
 class WP_Comments_List_Table extends WP_List_Table {
 
-	var $checkbox = true;
+	public $checkbox = true;
 
-	var $pending_count = array();
+	public $pending_count = array();
 
 	function __construct( $args = array() ) {
 		global $post_id;
Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 23294)
+++ wp-admin/includes/template.php	(working copy)
@@ -21,8 +21,8 @@
  * @since 2.5.1
  */
 class Walker_Category_Checklist extends Walker {
-	var $tree_type = 'category';
-	var $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); //TODO: decouple this
+	public $tree_type = 'category';
+	public $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); //TODO: decouple this
 
 	function start_lvl( &$output, $depth = 0, $args = array() ) {
 		$indent = str_repeat("\t", $depth);
Index: wp-admin/includes/class-wp-filesystem-direct.php
===================================================================
--- wp-admin/includes/class-wp-filesystem-direct.php	(revision 23294)
+++ wp-admin/includes/class-wp-filesystem-direct.php	(working copy)
@@ -15,7 +15,7 @@
  * @uses WP_Filesystem_Base Extends class
  */
 class WP_Filesystem_Direct extends WP_Filesystem_Base {
-	var $errors = null;
+	public $errors = null;
 	/**
 	 * constructor
 	 *
Index: wp-admin/includes/class-wp-filesystem-ftpext.php
===================================================================
--- wp-admin/includes/class-wp-filesystem-ftpext.php	(revision 23294)
+++ wp-admin/includes/class-wp-filesystem-ftpext.php	(working copy)
@@ -15,9 +15,9 @@
  * @uses WP_Filesystem_Base Extends class
  */
 class WP_Filesystem_FTPext extends WP_Filesystem_Base {
-	var $link;
-	var $errors = null;
-	var $options = array();
+	public $link;
+	public $errors = null;
+	public $options = array();
 
 	function __construct($opt='') {
 		$this->method = 'ftpext';
Index: wp-admin/includes/class-wp-filesystem-ssh2.php
===================================================================
--- wp-admin/includes/class-wp-filesystem-ssh2.php	(revision 23294)
+++ wp-admin/includes/class-wp-filesystem-ssh2.php	(working copy)
@@ -42,11 +42,11 @@
  */
 class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
 
-	var $link = false;
-	var $sftp_link = false;
-	var $keys = false;
-	var $errors = array();
-	var $options = array();
+	public $link = false;
+	public $sftp_link = false;
+	public $keys = false;
+	public $errors = array();
+	public $options = array();
 
 	function __construct($opt='') {
 		$this->method = 'ssh2';
