Browse Source

Merge pull request #702 from FreshRSS/fix-number

Small format fix
Alexis Degrugillier 11 years ago
parent
commit
2cbad0c1d7
1 changed files with 4 additions and 4 deletions
  1. 4 4
      app/views/stats/repartition.phtml

+ 4 - 4
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>