diff options
Diffstat (limited to 'modules/rss/views/rss_block.html.php')
-rw-r--r-- | modules/rss/views/rss_block.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/rss/views/rss_block.html.php b/modules/rss/views/rss_block.html.php index f964329c..39921d7d 100644 --- a/modules/rss/views/rss_block.html.php +++ b/modules/rss/views/rss_block.html.php @@ -1,9 +1,9 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <ul id="gFeeds"> -<? foreach($feeds as $title => $url): ?> +<? foreach($feeds as $url => $title): ?> <li style="clear: both;"> <span class="ui-icon-left"> - <a href="<?= $url ?>"> + <a href="<?= rss::url($url) ?>"> <span class="ui-icon ui-icon-signal-diag"></span> <?= $title ?> </a> |