Changeset 51107 for trunk/src/wp-includes/widgets.php
- Timestamp:
- 06/08/2021 07:34:28 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets.php
r51065 r51107 1566 1566 foreach ( $rss->get_items( 0, $items ) as $item ) { 1567 1567 $link = $item->get_link(); 1568 while ( stristr( $link, 'http' ) !== $link ) {1568 while ( ! empty( $link ) && stristr( $link, 'http' ) !== $link ) { 1569 1569 $link = substr( $link, 1 ); 1570 1570 }
Note: See TracChangeset
for help on using the changeset viewer.