From a9aecfb68f2702e22e36ad16e1ae7392a45ec2a0 Mon Sep 17 00:00:00 2001 From: koenemann Date: Thu, 2 Feb 2017 12:20:03 +0100 Subject: [PATCH] its okay WPCS, really... --- global-templates/left-sidebar-check.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/global-templates/left-sidebar-check.php b/global-templates/left-sidebar-check.php index 8585390..7e02ebb 100644 --- a/global-templates/left-sidebar-check.php +++ b/global-templates/left-sidebar-check.php @@ -45,8 +45,7 @@ if ( $is_woocommerce ) { } else { $html .= 'col-md-12 content-area" id="primary">'; } - _e( // WPCS: XSS OK. - $html ); + echo $html; // WPCS: XSS OK. } elseif ( is_active_sidebar( 'right-sidebar' ) && is_active_sidebar( 'left-sidebar' ) ) { $html = '
'; } - _e( // WPCS: XSS OK. - $html ); + echo $html; // WPCS: XSS OK. } else { echo '
'; }