From 073543c914a780d1a10b79e5728976f5b6578b8c Mon Sep 17 00:00:00 2001 From: Amin Date: Sun, 25 Aug 2024 20:33:49 +0200 Subject: [PATCH] fix: wrong escaping --- shortcode.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shortcode.php b/shortcode.php index 54009f6..f3d9ffe 100755 --- a/shortcode.php +++ b/shortcode.php @@ -116,24 +116,24 @@ function shortcode_handler( $atts, $content = null ) { $awaiting_verification = (string) filter_input(INPUT_GET, 'awaiting-verification', FILTER_SANITIZE_SPECIAL_CHARS); if( ! empty( $awaiting_verification ) && 'true' == $awaiting_verification ) { - return esc_html__('You have successfully registered on our website, Please check your email and click on the link we sent you to verify your email address.', 'dwverify'); + return __('You have successfully registered on our website, Please check your email and click on the link we sent you to verify your email address.', 'dwverify'); } switch ( $this->validation_status ) { case 'invalid_request': - $output .= esc_html__('Invalid request', 'dwverify'); + $output .= __('Invalid request', 'dwverify'); break; case 'validated' : - $output .= sprintf( esc_html__('Your email has been verified, you will be redirected in a few seconds click here if your browser does not redirect you automatically.', 'dwverify'), DWEmailVerify::instance()->redirect_url() ); + $output .= sprintf( __('Your email has been verified, you will be redirected in a few seconds click here if your browser does not redirect you automatically.', 'dwverify'), DWEmailVerify::instance()->redirect_url() ); break; case 'invalid_hash': - $output .= esc_html__('Sorry we could not verify your email address.', 'dwverify'); + $output .= __('Sorry we could not verify your email address.', 'dwverify'); break; } - return $output; + return wp_kses_post($output); } }