Skip to content

Commit

Permalink
Fix a string interpolation deprecated issue on the `WPCOM_Liveblog_En…
Browse files Browse the repository at this point in the history
…try_Extend_Feature_Commands` class
  • Loading branch information
renatonascalves committed Jul 11, 2024
1 parent 5894514 commit 68c42dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public function do_action_per_type( $id, $post_id ) {

// Run the command_after action on the
// content for the current type.
do_action( "liveblog_command_${type}_after", $content, $id, $post_id );
do_action( "liveblog_command_{$type}_after", $content, $id, $post_id );
}
}

Expand Down

0 comments on commit 68c42dd

Please sign in to comment.