diff options
| author | 2014-06-15 11:48:08 -0400 | |
|---|---|---|
| committer | 2014-06-15 11:48:08 -0400 | |
| commit | 177b398784da22854d39a1790514353f41a97450 (patch) | |
| tree | f6f7420ed021ff7de587a6a54c2865b098afeb64 /app/views | |
| parent | 1affa91312e9edc23e11f9454190dd5c35c9adf8 (diff) | |
Fix syntax
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/stats/idle.phtml | 10 |
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> |
