Coding Standards: Assignments must be the first block of code on a line.

Props subrataemfluence.
Fixes #44225.

git-svn-id: https://develop.svn.wordpress.org/trunk@44593 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2019-01-15 02:40:59 +00:00
parent 425b59c048
commit 66eefd653c

View File

@ -165,13 +165,15 @@ function _get_plugin_data_markup_translate( $plugin_file, $plugin_data, $markup
} }
// Sanitize fields // Sanitize fields
$allowed_tags = $allowed_tags_in_links = array( $allowed_tags_in_links = array(
'abbr' => array( 'title' => true ), 'abbr' => array( 'title' => true ),
'acronym' => array( 'title' => true ), 'acronym' => array( 'title' => true ),
'code' => true, 'code' => true,
'em' => true, 'em' => true,
'strong' => true, 'strong' => true,
); );
$allowed_tags = $allowed_tags_in_links;
$allowed_tags['a'] = array( $allowed_tags['a'] = array(
'href' => true, 'href' => true,
'title' => true, 'title' => true,