Make WordPress Core


Ignore:
Timestamp:
09/03/2007 11:19:20 PM (18 years ago)
Author:
ryan
Message:

Strip lines that contain only whitespace down to newlines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/rss.php

    r5859 r6025  
    828828    if ( $rss = fetch_rss( $url ) ) {
    829829        echo '<ul>';
    830        
     830
    831831        if ( $num_items !== -1 ) {
    832832            $rss->items = array_slice( $rss->items, 0, $num_items );
    833833        }
    834        
     834
    835835        foreach ( $rss->items as $item ) {
    836836            printf(
     
    841841            );
    842842        }
    843        
     843
    844844        echo '</ul>';
    845845    } else {
Note: See TracChangeset for help on using the changeset viewer.