From 4a69b4d2758fb4b36dbd8f4ec089f838f0bf9ec8 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 16 Sep 2015 13:29:25 +0000 Subject: [PATCH] Docs: Fix some syntactical issues with the DocBlock for the `WP_Theme->update` property, introduced in [33957]. Adds an `@since`. See #33491. See #32246. Built from https://develop.svn.wordpress.org/trunk@34236 git-svn-id: http://core.svn.wordpress.org/trunk@34200 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme.php | 8 +++++--- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index 03a81dd903..7bd9dca3bf 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -7,13 +7,15 @@ * @since 3.4.0 */ final class WP_Theme implements ArrayAccess { + /** - * Whether the theme has been marked as updateable - * - * @see WP_MS_Themes_List_Table + * Whether the theme has been marked as updateable. * + * @since 4.4.0 * @access public * @var bool + * + * @see WP_MS_Themes_List_Table */ public $update = false; diff --git a/wp-includes/version.php b/wp-includes/version.php index 8253f39cd4..f4dd921a72 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34235'; +$wp_version = '4.4-alpha-34236'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.