aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2014-11-08 10:04:43 -0500
committerGravatar Alexis Degrugillier <github@ainw.org> 2014-11-08 10:04:43 -0500
commitc4f6709a296dd7cd76bdd6507004fccf3da1de53 (patch)
treebcdb7efc87506f8c5b5ed4c4a2720e226ac23ac9
parent76fbc8c719b9d048f572c6c865c309d1e25b40f9 (diff)
Small format fix
-rw-r--r--app/views/stats/repartition.phtml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/stats/repartition.phtml b/app/views/stats/repartition.phtml
index 85a750bd0..4ea71cfb5 100644
--- a/app/views/stats/repartition.phtml
+++ b/app/views/stats/repartition.phtml
@@ -38,10 +38,10 @@
<th><?php echo _t('status_favorites'); ?></th>
</tr>
<tr>
- <td><?php echo $this->repartition['total']; ?></td>
- <td><?php echo $this->repartition['read']; ?></td>
- <td><?php echo $this->repartition['unread']; ?></td>
- <td><?php echo $this->repartition['favorite']; ?></td>
+ <td class="numeric"><?php echo $this->repartition['total']; ?></td>
+ <td class="numeric"><?php echo $this->repartition['read']; ?></td>
+ <td class="numeric"><?php echo $this->repartition['unread']; ?></td>
+ <td class="numeric"><?php echo $this->repartition['favorite']; ?></td>
</tr>
</table>
</div>