Changeset 61509 for trunk/src/wp-includes/class-wp-block-processor.php
- Timestamp:
- 01/22/2026 01:11:50 AM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-block-processor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-block-processor.php
r61452 r61509 1296 1296 $block['innerContent'][] = null; 1297 1297 } 1298 1299 /* 1300 * Because the parser has advanced past the closing block token, it 1301 * may be matched on an HTML span. This needs to be processed before 1302 * moving on to the next token at the start of the next loop iteration. 1303 */ 1304 if ( $this->is_html() ) { 1305 $chunk = $this->get_html_content(); 1306 $block['innerHTML'] .= $chunk; 1307 $block['innerContent'][] = $chunk; 1308 } 1298 1309 } 1299 1310
Note: See TracChangeset
for help on using the changeset viewer.