Changeset 72

Show
Ignore:
Timestamp:
06/20/07 13:41:13 (19 months ago)
Author:
verbosus
Message:

feed.php: Fixed a typo in array pushing

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hacks/trunk/feedphp/feed.php

    r71 r72  
    66   *  
    77   * author: Antonio Cavedoni <http://cavedoni.com/> 
    8    * version: 0.11 
     8   * version: 0.12 
    99   * revision: $Id$ 
    1010   * license: BSD 
     
    102102        $updates = array(); 
    103103        foreach ($this->items as $item) { 
    104             $this->updates[] = $item['pubDate']; 
     104            $updates[] = $item['pubDate']; 
    105105        } 
    106106        rsort($updates);