aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/view/rss_view.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 19:11:43 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 19:11:43 +0200
commit65ab90d3c77085abe9eb259bd7780f648051d49d (patch)
tree44fef5098d9997906cc4a635d0d39c232387a3aa /app/views/helpers/view/rss_view.phtml
parentb5dee73ea0ab3cc24c4857ac102e9e78cf20ab92 (diff)
Coding style (views)
See https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'app/views/helpers/view/rss_view.phtml')
-rwxr-xr-xapp/views/helpers/view/rss_view.phtml14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/helpers/view/rss_view.phtml b/app/views/helpers/view/rss_view.phtml
index fd8a8af63..e34b15ab1 100755
--- a/app/views/helpers/view/rss_view.phtml
+++ b/app/views/helpers/view/rss_view.phtml
@@ -6,22 +6,22 @@
<description><?php echo _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 Minz_Url::display ($this->url, 'html', true); ?>" rel="self" type="application/rss+xml" />
+ <atom:link href="<?php echo Minz_Url::display($this->url, 'html', true); ?>" rel="self" type="application/rss+xml" />
<?php
foreach ($this->entries as $item) {
?>
<item>
- <title><?php echo $item->title (); ?></title>
- <link><?php echo $item->link (); ?></link>
- <?php $author = $item->author (); ?>
+ <title><?php echo $item->title(); ?></title>
+ <link><?php echo $item->link(); ?></link>
+ <?php $author = $item->author(); ?>
<?php if ($author != '') { ?>
<dc:creator><?php echo $author; ?></dc:creator>
<?php } ?>
<description><![CDATA[<?php
- echo $item->content ();
+ echo $item->content();
?>]]></description>
- <pubDate><?php echo date('D, d M Y H:i:s O', $item->date (true)); ?></pubDate>
- <guid isPermaLink="false"><?php echo $item->id (); ?></guid>
+ <pubDate><?php echo date('D, d M Y H:i:s O', $item->date(true)); ?></pubDate>
+ <guid isPermaLink="false"><?php echo $item->id(); ?></guid>
</item>
<?php } ?>