PHPCS: Fix alignment issues.

This fixes some array alignment issues introduced in [44293].

git-svn-id: https://develop.svn.wordpress.org/trunk@44294 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2018-12-18 16:57:27 +00:00
parent a58e2a287a
commit 80a22dc202

View File

@ -851,13 +851,13 @@ function wp_kses_allowed_html( $context = '' ) {
$tags = $allowedposttags;
$tags['form'] = array(
'action' => true,
'accept' => true,
'action' => true,
'accept' => true,
'accept-charset' => true,
'enctype' => true,
'method' => true,
'name' => true,
'target' => true,
'enctype' => true,
'method' => true,
'name' => true,
'target' => true,
);
/** This filter is documented in wp-includes/kses.php */