1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-30 21:45:01 +03:00

fix RSS by AKela

This commit is contained in:
Mzhelskiy Maxim 2009-05-29 04:26:59 +00:00
parent dc098c0c8a
commit 9413427b2f

View file

@ -57,7 +57,7 @@ class ActionRss extends Action {
$item['description']=$oTopic->getTextShort();
$item['pubDate']=$oTopic->getDateAdd();
$item['author']=$oTopic->getUserLogin();
$item['category']=$oTopic->getTags();
$item['category']=htmlspecialchars($oTopic->getTags());
$topics[]=$item;
}
$this->Viewer_Assign('aChannel',$aChannel);
@ -84,7 +84,7 @@ class ActionRss extends Action {
$item['description']=$oTopic->getTextShort();
$item['pubDate']=$oTopic->getDateAdd();
$item['author']=$oTopic->getUserLogin();
$item['category']=$oTopic->getTags();
$item['category']=htmlspecialchars($oTopic->getTags());
$topics[]=$item;
}
$this->Viewer_Assign('aChannel',$aChannel);
@ -172,7 +172,7 @@ class ActionRss extends Action {
$item['description']=$oTopic->getTextShort();
$item['pubDate']=$oTopic->getDateAdd();
$item['author']=$oTopic->getUserLogin();
$item['category']=$oTopic->getTags();
$item['category']=htmlspecialchars($oTopic->getTags());
$topics[]=$item;
}
$this->Viewer_Assign('aChannel',$aChannel);
@ -204,7 +204,7 @@ class ActionRss extends Action {
$item['description']=$oTopic->getTextShort();
$item['pubDate']=$oTopic->getDateAdd();
$item['author']=$oTopic->getUserLogin();
$item['category']=$oTopic->getTags();
$item['category']=htmlspecialchars($oTopic->getTags());
$topics[]=$item;
}
$this->Viewer_Assign('aChannel',$aChannel);
@ -236,7 +236,7 @@ class ActionRss extends Action {
$item['description']=$oTopic->getTextShort();
$item['pubDate']=$oTopic->getDateAdd();
$item['author']=$oTopic->getUserLogin();
$item['category']=$oTopic->getTags();
$item['category']=htmlspecialchars($oTopic->getTags());
$topics[]=$item;
}
$this->Viewer_Assign('aChannel',$aChannel);