diff options
Diffstat (limited to 'modules/rss')
-rw-r--r-- | modules/rss/views/rss_block.html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/rss/views/rss_block.html.php b/modules/rss/views/rss_block.html.php index 10106af9..f964329c 100644 --- a/modules/rss/views/rss_block.html.php +++ b/modules/rss/views/rss_block.html.php @@ -1,13 +1,13 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <ul id="gFeeds"> -<? foreach($feeds as $text => $url): ?> +<? foreach($feeds as $title => $url): ?> <li style="clear: both;"> <span class="ui-icon-left"> <a href="<?= $url ?>"> <span class="ui-icon ui-icon-signal-diag"></span> - <?= $text ?> + <?= $title ?> </a> </span> </li> <? endforeach ?> -</ul>
\ No newline at end of file +</ul> |