We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df2832 commit 8217760Copy full SHA for 8217760
src/php/class-contextual-help.php
@@ -72,7 +72,7 @@ private function load_help_sidebar() {
72
'https://codesnippets.pro' => __( 'Plugin Website', 'code-snippets' ),
73
];
74
75
- $contents = '<p><strong>' . esc_html__( 'For more information:', 'code-snippets' ) . "</strong></p>\n";
+ $contents = sprintf( "<p><strong>%s</strong></p>\n", esc_html__( 'For more information:', 'code-snippets' ) );
76
77
foreach ( $sidebar_links as $url => $label ) {
78
$contents .= "\n" . sprintf( '<p><a href="%s">%s</a></p>', esc_url( $url ), esc_html( $label ) );
0 commit comments