- Timestamp:
- 07/08/09 03:22:51 (14 years ago)
- Location:
- dev/common
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/feed.php
r389 r406 24 24 require_once('common/includes/class.kill.php'); 25 25 require_once('common/includes/class.config.php'); 26 // include feed_fetcher to get version number 27 require_once('common/admin/feed_fetcher.php'); 26 28 27 29 $config = new Config(KB_SITE); 28 30 // maximum amount of kills to return. 29 31 $maxreturned = 100; 30 $html .= '<?xml version="1.0" encoding="UTF-8" ?>32 $html = '<?xml version="1.0" encoding="UTF-8" ?> 31 33 <rss version="2.0"> 32 34 <channel> … … 241 243 } 242 244 243 $html .= '<finalkill>'.$finalkill. '</finalkill>\n';245 $html .= '<finalkill>'.$finalkill."</finalkill>\n"; 244 246 foreach ($kills as $id => $timestamp) 245 247 { … … 251 253 <pubDate>'.strftime("%a, %d %b %Y %T %Z", strtotime($timestamp))."</pubDate>\n"; 252 254 if($kill->getExternalID()) $html .= "<apiID>".$kill->getExternalID()."</apiID>\n"; 253 $html .= '</item>\n';255 $html .= "</item>\n"; 254 256 } 255 257 $html .= '</channel></rss>'; -
dev/common/includes/class.comments.php
r388 r406 90 90 } 91 91 } 92 ?> 92 ?> -
dev/common/includes/globals.php
r404 r406 7 7 else 8 8 { 9 $svn_rev = '40 4';9 $svn_rev = '406'; 10 10 } 11 11 define('SVN_REV', $svn_rev);