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/atomlib.php

    r6010 r6025  
    4848
    4949    function AtomParser() {
    50        
     50
    5151        $this->feed = new AtomFeed();
    5252        $this->current = null;
     
    8888        while ($data = fread($fp, 4096)) {
    8989            if($this->debug) $this->content .= $data;
    90            
     90
    9191            if(!xml_parse($parser, $data, feof($fp))) {
    9292                trigger_error(sprintf(__('XML error: %s at line %d')."\n",
Note: See TracChangeset for help on using the changeset viewer.