소스 검색

Fix issue #74 : les tags associés sont désormais cliquables

Marien Fressinaud 13 년 전
부모
커밋
60edaa4375
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/views/index/index.phtml

+ 1 - 1
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>