From 5734818e35fb3723745ec00f7d075f4956d23bac Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 20 Jul 2017 11:54:43 +0000 Subject: [PATCH] Docs: Add `@access` entries for `$admin_header_callback` and `$admin_image_div_callback` properties in `Custom_Image_Header` and `Custom_Background`. Props rushabh4486. Fixes #41377. Built from https://develop.svn.wordpress.org/trunk@41100 git-svn-id: http://core.svn.wordpress.org/trunk@40940 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/custom-background.php | 2 ++ wp-admin/custom-header.php | 2 ++ wp-includes/version.php | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-admin/custom-background.php b/wp-admin/custom-background.php index 487697e40d..421f30d85f 100644 --- a/wp-admin/custom-background.php +++ b/wp-admin/custom-background.php @@ -18,6 +18,7 @@ class Custom_Background { * * @var callable * @since 3.0.0 + * @access public */ public $admin_header_callback; @@ -26,6 +27,7 @@ class Custom_Background { * * @var callable * @since 3.0.0 + * @access public */ public $admin_image_div_callback; diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index 25e265e21c..66f32a6658 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -18,6 +18,7 @@ class Custom_Image_Header { * * @var callable * @since 2.1.0 + * @access public */ public $admin_header_callback; @@ -26,6 +27,7 @@ class Custom_Image_Header { * * @var callable * @since 3.0.0 + * @access public */ public $admin_image_div_callback; diff --git a/wp-includes/version.php b/wp-includes/version.php index a8a73e5654..1ffc2a0716 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41099'; +$wp_version = '4.9-alpha-41100'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.