diff options
| author | 2014-10-30 20:00:25 +0100 | |
|---|---|---|
| committer | 2014-10-30 20:00:25 +0100 | |
| commit | 39d2a26cf0cbdf9238ba7a43c812225565f094b1 (patch) | |
| tree | c92857e2441d7b1ebfe14138a806ee080185a894 | |
| parent | 58deab37cdd97e93ac25aba574a32befe1db2243 (diff) | |
Fix bug in stats/index.phtml
| -rw-r--r-- | app/views/stats/index.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/stats/index.phtml b/app/views/stats/index.phtml index c75810850..1300cb2c7 100644 --- a/app/views/stats/index.phtml +++ b/app/views/stats/index.phtml @@ -23,7 +23,7 @@ </tr> <tr> <th><?php echo _t('status_read'); ?></th> - <td class="numeric"><?php echo FreshRSS_Context::$conf($this->repartition['main_stream']['read']); ?></td> + <td class="numeric"><?php echo format_number($this->repartition['main_stream']['read']); ?></td> <td class="numeric"><?php echo format_number($this->repartition['all_feeds']['read']); ?></td> </tr> <tr> |
