diff options
| author | 2013-05-12 17:20:26 +0200 | |
|---|---|---|
| committer | 2013-05-12 17:20:26 +0200 | |
| commit | 60edaa4375e804b7f572b2b4c9f89a4cc52562c6 (patch) | |
| tree | 5468709b0157a6564b4b6ce80cbbc7ef59678dec | |
| parent | c96225df6d6ba3aca0c6786c7f091f02c11d6e8d (diff) | |
Fix issue #74 : les tags associés sont désormais cliquables
| -rw-r--r-- | app/views/index/index.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/index/index.phtml b/app/views/index/index.phtml index 0e09f84df..9974a9b0b 100644 --- a/app/views/index/index.phtml +++ b/app/views/index/index.phtml @@ -98,7 +98,7 @@ if ($output == 'rss') { <li class="dropdown-close"><a href="#close"><i class="icon i_close"></i></a></li> <?php foreach($tags as $tag) { ?> - <li class="item"><span><?php echo $tag; ?></span></li> + <li class="item"><a href="<?php echo _url ('index', 'index', 'search', urlencode ('#' . $tag)); ?>"><?php echo $tag; ?></a></li> <?php } ?> </ul> </div> |
