From 68c42dd380f0d9762da92a591fc94e5a5f520bf9 Mon Sep 17 00:00:00 2001 From: Renato Alves <19148962+renatonascalves@users.noreply.github.com> Date: Thu, 11 Jul 2024 16:49:30 -0300 Subject: [PATCH] Fix a string interpolation deprecated issue on the `WPCOM_Liveblog_Entry_Extend_Feature_Commands` class --- classes/class-wpcom-liveblog-entry-extend-feature-commands.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/class-wpcom-liveblog-entry-extend-feature-commands.php b/classes/class-wpcom-liveblog-entry-extend-feature-commands.php index 553fe6171..a52a7670e 100644 --- a/classes/class-wpcom-liveblog-entry-extend-feature-commands.php +++ b/classes/class-wpcom-liveblog-entry-extend-feature-commands.php @@ -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 ); } }