Browse Source

Add a link on top feeds to their respective stats

Marien Fressinaud 11 years ago
parent
commit
718a4cdb10
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/views/stats/index.phtml

+ 1 - 1
app/views/stats/index.phtml

@@ -53,7 +53,7 @@
 			<tbody>
 				<?php foreach ($this->topFeed as $feed): ?>
 					<tr>
-						<td><?php echo $feed['name']; ?></td>
+						<td><a href="<?php echo _url('stats', 'repartition', 'id', $feed['id']); ?>"><?php echo $feed['name']; ?></a></td>
 						<td><?php echo $feed['category']; ?></td>
 						<td class="numeric"><?php echo formatNumber($feed['count']); ?></td>
 					</tr>