From 092e4cb156ba3847d457bdd0127ff1803fc16b01 Mon Sep 17 00:00:00 2001 From: IanDelMar <42134098+IanDelMar@users.noreply.github.com> Date: Wed, 29 Apr 2020 19:26:14 +0200 Subject: [PATCH] Fix string literal in number_format_i18n() --- comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comments.php b/comments.php index c03da01..7742e3f 100644 --- a/comments.php +++ b/comments.php @@ -49,7 +49,7 @@ if ( post_password_required() ) { 'understrap' ) ), - number_format_i18n( '$comments_number' ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped + number_format_i18n( $comments_number ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped '' . get_the_title() . '' ); }