Changeset 1458 for branches

Show
Ignore:
Timestamp:
04/28/06 05:30:30 (3 years ago)
Author:
sdcosta
Message:

Accidently deleted a line.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/magpie-hacks/rss_parse.inc

    r1457 r1458  
    665665            } else { 
    666666                $this->normalize_element($item, 'updated', $item, 'modified'); 
     667                $this->normalize_element($item, 'published', $item, 'issued'); 
    667668                $this->normalize_element($item, 'id', $item, 'guid'); 
    668669            } 
     
    718719            // Normalized item timestamp 
    719720            $atom_date = (isset($item['published']) ) ? $item['published'] : 
    720                              ((isset($item['updated']) ) ? $item['updated'] : ""); 
     721                             (isset($item['updated']) ? $item['updated'] : ""); 
    721722            if ( $atom_date ) { 
    722723                $epoch = @parse_w3cdtf($atom_date);