- Timestamp:
- 01/20/2022 09:17:43 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-community-events.php
r51657 r52608 454 454 * @since 4.9.7 Stick a WordCamp to the final list. 455 455 * @since 5.5.2 Accepts and returns only the events, rather than an entire HTTP response. 456 * @since 6.0.0 Decode HTML entities from the event title. 456 457 * 457 458 * @param array $events The events that will be prepared. … … 469 470 470 471 if ( time() < $end_time ) { 472 // Decode HTML entities from the event title. 473 $event['title'] = html_entity_decode( $event['title'], ENT_QUOTES, 'UTF-8' ); 474 471 475 array_push( $future_events, $event ); 472 476 }
Note: See TracChangeset
for help on using the changeset viewer.