From 5855569255664242e03f8e6c983401cc10ff834a Mon Sep 17 00:00:00 2001 From: DAnn2012 Date: Thu, 6 Jun 2024 13:04:30 +0200 Subject: [PATCH] Update Field.php --- kirki-packages/compatibility/src/Field.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kirki-packages/compatibility/src/Field.php b/kirki-packages/compatibility/src/Field.php index 43f220ec0..702359134 100644 --- a/kirki-packages/compatibility/src/Field.php +++ b/kirki-packages/compatibility/src/Field.php @@ -375,7 +375,7 @@ protected function set_option_type() { // Take care of common typos. if ( 'theme_mods' === $this->option_type ) { /* translators: %1$s represents the field ID where the error occurs. */ - _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' ); + _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' ); $this->option_type = 'theme_mod'; } }