diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index ad70a4bf9e..03a81dd903 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -4,9 +4,18 @@ * * @package WordPress * @subpackage Theme + * @since 3.4.0 */ - final class WP_Theme implements ArrayAccess { + /** + * Whether the theme has been marked as updateable + * + * @see WP_MS_Themes_List_Table + * + * @access public + * @var bool + */ + public $update = false; /** * Headers for style.css files. diff --git a/wp-includes/version.php b/wp-includes/version.php index fdfbb7ae8f..b08adecd3b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33956'; +$wp_version = '4.4-alpha-33957'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.