aboutsummaryrefslogtreecommitdiff
path: root/app/views/stats
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-17 21:15:24 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-17 21:15:24 +0100
commit875b8a72f97429c4e4df6d292daf4261fb7a45bd (patch)
tree55c06f3b199a952d539e5c8aa3ac2e50de3dbf4d /app/views/stats
parent7f4ca35fc331ca4ce5e097d574e99417da0ef73e (diff)
Coding style endforeach (must be avoided)
Diffstat (limited to 'app/views/stats')
-rw-r--r--app/views/stats/index.phtml4
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>