fix output of statistics

darcs-hash:20080519141943-84dde-940b096ccb100a7f92eb0787dc7c1050d8184ad3.gz
This commit is contained in:
Evan Prodromou 2008-05-19 10:19:43 -04:00
parent 86cc2a16a9
commit 0240e9951a
1 changed files with 6 additions and 6 deletions

View File

@ -221,12 +221,12 @@ class ShowstreamAction extends StreamAction {
# Other stats...?
common_element_start('dl', 'statistics');
common_element('dt', _t('Subscriptions'));
common_element('dd', $subs_count);
common_element('dt', _t('Subscribers'));
common_element('dd', $subbed_count);
common_element('dt', _t('Notices'));
common_element('dd', $notice_count);
common_element('dt', 'subscriptions', _t('Subscriptions'));
common_element('dd', 'subscriptions', $subs_count);
common_element('dt', 'subscribers', _t('Subscribers'));
common_element('dd', 'subscribers', $subbed_count);
common_element('dt', 'notices', _t('Notices'));
common_element('dd', 'notices', $notice_count);
common_element_end('dl');
common_element_end('div');