Changeset 1793

Show
Ignore:
Timestamp:
09/06/10 19:47:13 (17 months ago)
Author:
paparazzia
Message:

refs #398 et correction pour que le feed valide

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/phpcommon/racesiterators.class.php

    r1778 r1793  
    131131 
    132132        function end() { 
    133             $this->rssobject->setChannelElement('pubDate', $this->updateTime); 
     133            $this->rssobject->setChannelElement('pubDate', date(DATE_RSS, strtotime($this->updateTime))); 
     134            $this->rssobject->setChannelElement('description', "VLM Races"); 
    134135            $this->rssobject->genarateFeed(); 
    135136        } 
  • trunk/site/feed/modules.updates.rss2.php

    r1699 r1793  
    4141    } 
    4242 
    43     $rssobject->setChannelElement('pubDate', $updateTime); 
     43    $rssobject->rssobject->setChannelElement('pubDate', date(DATE_RSS, strtotime($this->updateTime))); 
     44    $this->rssobject->setChannelElement('description', "VLM Modules Status"); 
    4445    $rssobject->genarateFeed(); 
    4546