From fe52e51bd94b2f789a39ebe7fc7ea2182004d0a6 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Tue, 18 Aug 2026 10:03:23 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Update=20escaping=20for?= =?UTF-8?q?=20template=20id=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/show-template.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/show-template.php b/lib/show-template.php index 1ca739d..d450c49 100644 --- a/lib/show-template.php +++ b/lib/show-template.php @@ -160,13 +160,15 @@ class ShowTemplate { if ( $fudge === $this->template || $fudge === false ) { echo wp_kses_post( "\n" ); } else { - echo esc_html( "\n" ); + // phpcs:disable + echo "\n"; + // phpcs:enable } } }