diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-31 01:14:28 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-31 01:14:28 -0700 |
commit | 9a6f18075a8e0ad070e54d5bf361a3f993915b02 (patch) | |
tree | e1f8b1af4d123b7df05069cf74a1c2c32b23a01e /modules/rss | |
parent | af0031e02946a53062ce2c9dd209a50fb1a12e0c (diff) |
Rename "text" to "title" for clarity.
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> |