diff options
| author | 2013-11-09 20:14:42 +0100 | |
|---|---|---|
| committer | 2013-11-09 20:14:42 +0100 | |
| commit | 33b68a801734999504d3dfe811bb71582f7b9b0d (patch) | |
| tree | 57cf94e976d8edc6abba730ab23c6fb772ce355e /app/views | |
| parent | f1ae155a3c15c7c04e212d76fca465bb464aa988 (diff) | |
Corrige le titre des flux RSS générés
Supprime le nombre de non lus dans le titre des flux RSS générés
Diffstat (limited to 'app/views')
| -rwxr-xr-x | app/views/helpers/view/rss_view.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/view/rss_view.phtml b/app/views/helpers/view/rss_view.phtml index 10516e21d..7459de0a1 100755 --- a/app/views/helpers/view/rss_view.phtml +++ b/app/views/helpers/view/rss_view.phtml @@ -1,9 +1,9 @@ <?php echo '<?xml version="1.0" encoding="UTF-8" ?>'; ?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel> - <title><?php echo View::title(); ?></title> + <title><?php echo $this->rss_title; ?></title> <link><?php echo Url::display(); ?></link> - <description><?php echo Translate::t ('rss_feeds_of', View::title()); ?></description> + <description><?php echo Translate::t ('rss_feeds_of', $this->rss_title); ?></description> <pubDate><?php echo date('D, d M Y H:i:s O'); ?></pubDate> <lastBuildDate><?php echo gmdate('D, d M Y H:i:s'); ?> GMT</lastBuildDate> <atom:link href="<?php echo _url ('index', 'index', 'output', 'rss'); ?>" rel="self" type="application/rss+xml" /> |
