From: <al...@us...> - 2008-09-24 22:07:45
|
Revision: 697 http://sciret.svn.sourceforge.net/sciret/?rev=697&view=rev Author: alpeb Date: 2008-09-24 22:07:30 +0000 (Wed, 24 Sep 2008) Log Message: ----------- fixed more RSS issues Modified Paths: -------------- trunk/templates/Rss.tpl trunk/views/Rss.php Modified: trunk/templates/Rss.tpl =================================================================== --- trunk/templates/Rss.tpl 2008-09-24 22:05:30 UTC (rev 696) +++ trunk/templates/Rss.tpl 2008-09-24 22:07:30 UTC (rev 697) @@ -2,12 +2,10 @@ <rss version="2.0"> <channel> <title> - [l]Knowledge Base Articles[/l] {category} + [l]Knowledge Base Articles[/l] </title> <link>{link}</link> - <description> - [l]Knowledge Base Articles[/l]{category} - </description> + <description>{category}</description> <generator>Sciret version {version}</generator> <!-- BEGIN articles_block --> <item> Modified: trunk/views/Rss.php =================================================================== --- trunk/views/Rss.php 2008-09-24 22:05:30 UTC (rev 696) +++ trunk/views/Rss.php 2008-09-24 22:07:30 UTC (rev 697) @@ -27,7 +27,7 @@ if (isset($_GET['catId']) && $_GET['catId'] > 0) { $catId = (int)$_GET['catId']; $category = new Category($catId); - $this->tpl->set_var('category', ' - ' . $this->user->lang('Category %s', $category->getLabel())); + $this->tpl->set_var('category', $this->user->lang('Category %s', $category->getLabel())); } else { $catId = 0; $this->tpl->set_var('category', ''); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |