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

Props subrataemfluence.
Fixes #44225.
Built from https://develop.svn.wordpress.org/trunk@44593


git-svn-id: http://core.svn.wordpress.org/trunk@44424 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-01-15 02:41:50 +00:00
parent 34c4ce3c81
commit 59fbee8544
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-beta1-44592';
$wp_version = '5.1-beta1-44593';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.