Make WordPress Core

Changeset 55721


Ignore:
Timestamp:
05/04/2023 08:41:01 AM (12 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.
Fixes #58250.

File:
1 edited

Legend:

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

    r55718 r55721  
    14661466            }
    14671467
    1468             $output_buffer        .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
    1469             $output_buffer        .= $diff->text;
    1470             $bytes_already_copied  = $diff->end;
     1468            $output_buffer       .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
     1469            $output_buffer       .= $diff->text;
     1470            $bytes_already_copied = $diff->end;
    14711471        }
    14721472
Note: See TracChangeset for help on using the changeset viewer.