From 53e03152422a3097114b46e61dd9256518bc5acc Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Tue, 23 Feb 2016 01:28:25 +0000 Subject: [PATCH] Customize: Let `WP_Customize_Selective_Refresh` class be `final` to match manager and other component classes. This class is not intended to be extended. See #27355. Built from https://develop.svn.wordpress.org/trunk@36624 git-svn-id: http://core.svn.wordpress.org/trunk@36591 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/customize/class-wp-customize-selective-refresh.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/customize/class-wp-customize-selective-refresh.php b/wp-includes/customize/class-wp-customize-selective-refresh.php index 046b878de7..bf8a9e3c8e 100644 --- a/wp-includes/customize/class-wp-customize-selective-refresh.php +++ b/wp-includes/customize/class-wp-customize-selective-refresh.php @@ -12,7 +12,7 @@ * * @since 4.5.0 */ -class WP_Customize_Selective_Refresh { +final class WP_Customize_Selective_Refresh { /** * Query var used in requests to render partials. diff --git a/wp-includes/version.php b/wp-includes/version.php index 1335d60b34..9c154a4bef 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36623'; +$wp_version = '4.5-alpha-36624'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.