From efe00618ab090fb14327f2e54bc670ecb2639ed4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Aug 2021 12:58:45 +0000 Subject: [PATCH] Coding Standards: Fix incorrect comment indent in `safecss_filter_attr()`. Props jrf. See #53359. git-svn-id: https://develop.svn.wordpress.org/trunk@51550 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/kses.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/kses.php b/src/wp-includes/kses.php index 10dd0b3656..527d374c9c 100644 --- a/src/wp-includes/kses.php +++ b/src/wp-includes/kses.php @@ -2411,7 +2411,7 @@ function safecss_filter_attr( $css, $deprecated = '' ) { */ $allow_css = apply_filters( 'safecss_filter_attr_allow_css', $allow_css, $css_test_string ); - // Only add the CSS part if it passes the regex check. + // Only add the CSS part if it passes the regex check. if ( $allow_css ) { if ( '' !== $css ) { $css .= ';';