From 242e8ba1ff00799d3a8d8ad4838bb58422a01f5c Mon Sep 17 00:00:00 2001 From: Dennis Snell Date: Thu, 3 Aug 2023 22:45:46 -0700 Subject: [PATCH] Re-align equalities --- src/wp-includes/html-api/class-wp-html-processor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/html-api/class-wp-html-processor.php b/src/wp-includes/html-api/class-wp-html-processor.php index 60d7849be5f94..fb3abbabf1f03 100644 --- a/src/wp-includes/html-api/class-wp-html-processor.php +++ b/src/wp-includes/html-api/class-wp-html-processor.php @@ -939,7 +939,7 @@ private function step_until_tag_is_closed() { foreach ( $this->state->stack_of_open_elements->with_pop_listener( $tag_is_closed ) as $_ ) { // Find where the tag is closed by stepping forward until it's no longer on the stack of open elements. do { - $found_tag = $this->step(); + $found_tag = $this->step(); } while ( $found_tag && $keep_searching ); }