Make WordPress Core


Ignore:
Timestamp:
05/04/2023 08:44:22 AM (18 months ago)
Author:
Bernhard Reiter
Message:

HTML API: Adjust coding style to pass Gutenberg linter.

This patch adjusts some minor neutral whitespace that the Gutenberg linting rejects.
There are no code changes otherwise.

Props dmsnell.
Merges [55721] to the 6.2 branch.
Fixes #58250.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/6.2/src/wp-includes/html-api/class-wp-html-tag-processor.php

    r55708 r55722  
    14651465            }
    14661466
    1467             $output_buffer        .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
    1468             $output_buffer        .= $diff->text;
    1469             $bytes_already_copied  = $diff->end;
     1467            $output_buffer       .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
     1468            $output_buffer       .= $diff->text;
     1469            $bytes_already_copied = $diff->end;
    14701470        }
    14711471
Note: See TracChangeset for help on using the changeset viewer.