diff options
Diffstat (limited to 'app/views/stats/index.phtml')
| -rw-r--r-- | app/views/stats/index.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/stats/index.phtml b/app/views/stats/index.phtml index c13c5d26c..18bcd4d99 100644 --- a/app/views/stats/index.phtml +++ b/app/views/stats/index.phtml @@ -52,14 +52,14 @@ </tr> </thead> <tbody> - <?php foreach ($this->topFeed as $feed): ?> + <?php foreach ($this->topFeed as $feed) { ?> <tr> <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 format_number($feed['count']); ?></td> <td class="numeric"><?php echo format_number($feed['count'] / $this->repartition['all_feeds']['total'] * 100, 1);?></td> </tr> - <?php endforeach;?> + <?php } ?> </tbody> </table> </div> |
