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
This commit is contained in:
Sergey Biryukov 2021-08-05 12:58:45 +00:00
parent 3ebaa9220f
commit efe00618ab

View File

@ -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 .= ';';