Coding Standards: Fix alignment in WP_REST_Widgets_Controller::prepare_item_for_response.

Follow-up to [59899].

See #56481, 62279.

Built from https://develop.svn.wordpress.org/trunk@60044


git-svn-id: http://core.svn.wordpress.org/trunk@59380 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Jorbin
2025-03-18 20:39:23 +00:00
parent 36ae833962
commit b6e009f4dd
2 changed files with 2 additions and 2 deletions

View File

@@ -682,7 +682,7 @@ class WP_REST_Widgets_Controller extends WP_REST_Controller {
);
}
$widget = $wp_registered_widgets[ $widget_id ];
$widget = $wp_registered_widgets[ $widget_id ];
// Don't prepare the response body for HEAD requests.
if ( $request->is_method( 'HEAD' ) ) {
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php */

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.8-beta3-60043';
$wp_version = '6.8-beta3-60044';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.