Changeset 61624
- Timestamp:
- 02/12/2026 03:47:56 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-open-elements.php
r60804 r61624 716 716 717 717 if ( null !== $this->push_handler ) { 718 ( $this->push_handler )($item );718 call_user_func( $this->push_handler, $item ); 719 719 } 720 720 } … … 764 764 765 765 if ( null !== $this->pop_handler ) { 766 ( $this->pop_handler )($item );766 call_user_func( $this->pop_handler, $item ); 767 767 } 768 768 }
Note: See TracChangeset
for help on using the changeset viewer.