Skip to content

Commit 7607cbc

Browse files
committed
Coding Standards: Fix alignment in WP_REST_Widgets_Controller::prepare_item_for_response.
Follow-up to [59899]. See #56481, 62279. git-svn-id: https://develop.svn.wordpress.org/trunk@60044 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a96fa16 commit 7607cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ public function prepare_item_for_response( $item, $request ) {
682682
);
683683
}
684684

685-
$widget = $wp_registered_widgets[ $widget_id ];
685+
$widget = $wp_registered_widgets[ $widget_id ];
686686
// Don't prepare the response body for HEAD requests.
687687
if ( $request->is_method( 'HEAD' ) ) {
688688
/** This filter is documented in wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php */

0 commit comments

Comments
 (0)