Fix string literal in number_format_i18n()

This commit is contained in:
IanDelMar 2020-04-29 19:26:14 +02:00 committed by GitHub
parent ce387ff7bd
commit 092e4cb156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
'<span>' . get_the_title() . '</span>'
);
}