- Timestamp:
- 01/26/2026 04:28:52 PM (4 months ago)
- Location:
- branches/6.9
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/class-wp-block-processor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.9
-
branches/6.9/src/wp-includes/class-wp-block-processor.php
r61528 r61530 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.