Skip to content

Commit cbb6519

Browse files
committed
Coding Standards: Fix alignment in do_blocks.
Introduced in [60316]. See #63588. git-svn-id: https://develop.svn.wordpress.org/trunk@60402 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6113067 commit cbb6519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2428,7 +2428,7 @@ function do_blocks( $content ) {
24282428
* out-of-memory crashes for certain posts that now run with this change.
24292429
*/
24302430
for ( $i = 0; $i < $top_level_block_count; $i++ ) {
2431-
$output .= render_block( $blocks[ $i ] );
2431+
$output .= render_block( $blocks[ $i ] );
24322432
$blocks[ $i ] = null;
24332433
}
24342434

0 commit comments

Comments
 (0)