aboutsummaryrefslogtreecommitdiff
path: root/app/views/stats/idle.phtml
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2014-06-15 11:48:08 -0400
committerGravatar Alexis Degrugillier <github@ainw.org> 2014-06-15 12:05:21 -0400
commite9cee8cc20835b3151de70e4df25cc5e80c4ec85 (patch)
tree2ef92e23789d5948530040bb21a8de186fe3e655 /app/views/stats/idle.phtml
parentd9f570a84d32921287fadced6dce0304b565bb85 (diff)
Fix syntax
Diffstat (limited to 'app/views/stats/idle.phtml')
-rw-r--r--app/views/stats/idle.phtml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml
index 08ce440e8..26806bb0e 100644
--- a/app/views/stats/idle.phtml
+++ b/app/views/stats/idle.phtml
@@ -5,15 +5,15 @@
<h1><?php echo Minz_Translate::t ('stats_idle'); ?></h1>
- <?php foreach ($this->idleFeeds as $period => $feeds): ?>
+ <?php foreach ($this->idleFeeds as $period => $feeds){ ?>
<div class="stat">
<h2><?php echo Minz_Translate::t ($period); ?></h2>
<ul>
- <?php foreach ($feeds as $feed): ?>
+ <?php foreach ($feeds as $feed){ ?>
<li><?php echo $feed; ?></li>
- <?php endforeach; ?>
+ <?php } ?>
</ul>
</div>
- <?php endforeach; ?>
-</div> \ No newline at end of file
+ <?php } ?>
+</div>