Skip to content

Commit 001cbe1

Browse files
authored
Merge pull request #236 from codesnippetspro/fix/fatal-error
fix: add missing comma to translation string formatting in safe mode notice
2 parents e08c621 + ca2c725 commit 001cbe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/php/views/partials/list-table-notices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
esc_html__( 'Warning:', 'code-snippets' ),
2525
sprintf(
2626
// translators: 1: constant name, 2: file name.
27-
esc_html__( 'Safe mode is active and snippets will not execute! Remove the %1$s constant from %2$s file to turn off safe mode.', 'code-snippets' )
27+
esc_html__( 'Safe mode is active and snippets will not execute! Remove the %1$s constant from %2$s file to turn off safe mode.', 'code-snippets' ),
2828
'<code>CODE_SNIPPETS_SAFE_MODE</code>',
2929
'<code>wp-config.php</code>',
3030
)

0 commit comments

Comments
 (0)