Changeset 918
- Timestamp:
- 06/05/10 01:34:43 (20 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
classes/actions/ActionRss.class.php (modified) (6 diffs)
-
install/index.php (modified) (1 diff)
-
templates/skin/new/actions/ActionRss/index.tpl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/actions/ActionRss.class.php
r756 r918 78 78 $aTopics=$aResult['collection']; 79 79 80 $aChannel['title']=Config::Get(' path.root.web');80 $aChannel['title']=Config::Get('view.name'); 81 81 $aChannel['link']=Config::Get('path.root.web'); 82 82 $aChannel['description']=Config::Get('path.root.web').' / RSS channel'; … … 112 112 $aComments=$aResult['collection']; 113 113 114 $aChannel['title']=Config::Get(' path.root.web');114 $aChannel['title']=Config::Get('view.name'); 115 115 $aChannel['link']=Config::Get('path.root.web'); 116 116 $aChannel['description']=Config::Get('path.root.web').' / RSS channel'; … … 147 147 $aComments=$aComments['comments']; 148 148 149 $aChannel['title']=Config::Get(' path.root.web');149 $aChannel['title']=Config::Get('view.name'); 150 150 $aChannel['link']=Config::Get('path.root.web'); 151 151 $aChannel['description']=Config::Get('path.root.web').' / RSS channel'; … … 177 177 $aTopics=$aResult['collection']; 178 178 179 $aChannel['title']=Config::Get(' path.root.web');179 $aChannel['title']=Config::Get('view.name'); 180 180 $aChannel['link']=Config::Get('path.root.web'); 181 181 $aChannel['description']=Config::Get('path.root.web').' / RSS channel'; … … 211 211 $aTopics=$aResult['collection']; 212 212 213 $aChannel['title']=Config::Get(' path.root.web');213 $aChannel['title']=Config::Get('view.name'); 214 214 $aChannel['link']=Config::Get('path.root.web'); 215 215 $aChannel['description']=Config::Get('path.root.web').' / '.$oBlog->getTitle().' / RSS channel'; … … 253 253 $aTopics=$aResult['collection']; 254 254 255 $aChannel['title']=Config::Get(' path.root.web');255 $aChannel['title']=Config::Get('view.name'); 256 256 $aChannel['link']=Config::Get('path.root.web'); 257 257 $aChannel['description']=($this->sUserLogin) -
trunk/install/index.php
r917 r918 18 18 error_reporting(E_ALL); 19 19 set_time_limit(0); 20 define('LS_VERSION','0.4 ');20 define('LS_VERSION','0.4.1'); 21 21 22 22 class Install { -
trunk/templates/skin/new/actions/ActionRss/index.tpl
r627 r918 13 13 {foreach from=$aItems item=oItem} 14 14 <item> 15 <title> <![CDATA[{$oItem.title|escape:'html'}]]></title>15 <title>{$oItem.title|escape:'html'}</title> 16 16 <guid isPermaLink="true">{$oItem.guid}</guid> 17 17 <link>{$oItem.link}</link>
