mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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:
parent
34c4ce3c81
commit
59fbee8544
@ -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,
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user