Changeset 1065

Show
Ignore:
Timestamp:
05/08/2008 04:16:10 PM (14 months ago)
Author:
BrianKoontz
Message:

Remove extra character from XML output that prevents links from
working correctly. Refs #759.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.1.6.5/handlers/page/revisions.xml.php

    r435 r1065  
    5959                                $xml .= "<item>\n"; 
    6060                                $xml .= "<title>".$page["time"]."</title>\n"; 
    61                                 $xml .= '<link>'.$this->Href('show', '', 'time=.'.urlencode($page['time'])).'</link>'."\n"; 
     61                                $xml .= '<link>'.$this->Href('show', '', 'time='.urlencode($page['time'])).'</link>'."\n"; 
    6262                                $xml .= '<description>'.sprintf(REVISIONS_EDITED_BY, $this->htmlspecialchars_ent($page['user'],ENT_COMPAT,'XML')).($page['note'] ? ' - '.$this->htmlspecialchars_ent($page['note'],ENT_COMPAT,'XML') : '')."</description>\n"; 
    6363                                $xml .= "\t<pubDate>".date("r",strtotime($page["time"]))."</pubDate>\n";