HTML API: Update code style so it passes when backported into Gutenberg.
This changes the indentation of a variable in class-wp-html-tag-processor.php to satisfy both WordPress and Gutenberg linters. Props dmsnell, zieladam, ntsekouras. Merges [55674] to the 6.2 branch. Fixes #58530. Built from https://develop.svn.wordpress.org/branches/6.2@55925 git-svn-id: http://core.svn.wordpress.org/branches/6.2@55437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
08452a6ca0
commit
c13e236a4b
|
@ -1894,7 +1894,7 @@ class WP_HTML_Tag_Processor {
|
|||
*
|
||||
* Result: <div id="new"/>
|
||||
*/
|
||||
$existing_attribute = $this->attributes[ $comparable_name ];
|
||||
$existing_attribute = $this->attributes[ $comparable_name ];
|
||||
$this->lexical_updates[ $comparable_name ] = new WP_HTML_Text_Replacement(
|
||||
$existing_attribute->start,
|
||||
$existing_attribute->end,
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.2.3-alpha-55842';
|
||||
$wp_version = '6.2.3-alpha-55925';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue