Skip to content

Commit

Permalink
Add missing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
artemiomorales committed Jan 12, 2024
1 parent 37e8dbd commit 27cfb49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/experimental/block-bindings/block-bindings.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ function wp_block_bindings_get_sources() {

if ( ! function_exists( 'wp_block_bindings_replace_html' ) ) {
function wp_block_bindings_replace_html( $block_content, $block_name, $block_attr, $source_value ) {
wp_block_bindings()->replace_html( $block_content, $block_name, $block_attr, $source_value );
return wp_block_bindings()->replace_html( $block_content, $block_name, $block_attr, $source_value );
}
}

0 comments on commit 27cfb49

Please sign in to comment.