Skip to content
Snippets Groups Projects

Hotline#18614 rss pub date

Merged Laurent requested to merge hotline#18614_rss_pub_date into hotline_6.59
Compare and
+ 36
17
Preferences
Compare changes
Files
@@ -328,7 +328,9 @@ class CmsController extends Zend_Controller_Action {
. $this->_request->getServer('HTTP_HOST')
. $this->view->url($article->getUrl()),
'description' => html_entity_decode(Class_CmsUrlTransformer::imgUrlRelativeToAbsolute($article->getFullContent())),
'lastUpdate' => strtotime($article->getDateMaj())
'lastUpdate' => strtotime($article->hasDebut()
? $article->getDebut()
: $article->getDateMaj())
];
}