From 70bfe13aa0a9ef7429c226745ca87060ac9c6aca Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 9 Oct 2024 20:17:18 +0000 Subject: [PATCH] Twenty Eleven: Document the `$instance` parameter in Ephemera widget form. Follow-up to [17669], [25625]. Props parthvataliya. See #62183. Built from https://develop.svn.wordpress.org/trunk@59200 git-svn-id: http://core.svn.wordpress.org/trunk@58595 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyeleven/inc/widgets.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentyeleven/inc/widgets.php b/wp-content/themes/twentyeleven/inc/widgets.php index 5ba4f1a438..7335daad86 100644 --- a/wp-content/themes/twentyeleven/inc/widgets.php +++ b/wp-content/themes/twentyeleven/inc/widgets.php @@ -186,6 +186,8 @@ class Twenty_Eleven_Ephemera_Widget extends WP_Widget { * Displays the form for this widget on the Widgets page of the WP Admin area. * * @since Twenty Eleven 1.0 + * + * @param array $instance The settings for the particular instance of the widget. */ public function form( $instance ) { $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : ''; diff --git a/wp-includes/version.php b/wp-includes/version.php index a1656999a3..021065fcfc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta2-59199'; +$wp_version = '6.7-beta2-59200'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.