Skip to content

Commit 7dae423

Browse files
authored
Merge pull request #2532 from DAnn2012/patch-1
Fix String translation in Field.php file
2 parents 00ce402 + 5855569 commit 7dae423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kirki-packages/compatibility/src/Field.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ protected function set_option_type() {
375375
// Take care of common typos.
376376
if ( 'theme_mods' === $this->option_type ) {
377377
/* translators: %1$s represents the field ID where the error occurs. */
378-
_doing_it_wrong( __METHOD__, sprintf( esc_html( 'Typo found in field %s - "theme_mods" vs "theme_mod"', 'kirki' ), esc_html( $this->settings ) ), '3.0.10' );
378+
_doing_it_wrong( __METHOD__, sprintf( esc_html__( 'Typo found in field %s - "theme_mods" vs "theme_mod"', 'kirki' ), esc_html( $this->settings ) ), '3.0.10' );
379379
$this->option_type = 'theme_mod';
380380
}
381381
}

0 commit comments

Comments
 (0)