diff options
| -rw-r--r-- | app/views/helpers/feed/update.phtml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml index 3f6b32076..678c5f132 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -1,10 +1,13 @@ <div class="post"> <h1><?php echo $this->feed->name (); ?></h1> - <?php echo $this->feed->description (); ?> - <a href="<?php echo _url('index', 'index', 'get', 'f_' . $this->feed->id ()); ?>"><?php echo _i('link'); ?> <?php echo _t('filter'); ?></a> - <?php echo _t('or'); ?> - <a href="<?php echo _url('stats', 'repartition', 'id', $this->feed->id()); ?>"><?php echo _i('stats'); ?> <?php echo _t('stats'); ?></a> + <div> + <a href="<?php echo _url('index', 'index', 'get', 'f_' . $this->feed->id ()); ?>"><?php echo _i('link'); ?> <?php echo _t('filter'); ?></a> + <?php echo _t('or'); ?> + <a href="<?php echo _url('stats', 'repartition', 'id', $this->feed->id()); ?>"><?php echo _i('stats'); ?> <?php echo _t('stats'); ?></a> + </div> + + <p><?php echo $this->feed->description (); ?></p> <?php $nbEntries = $this->feed->nbEntries (); ?> |
