summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-19 10:19:43 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-19 10:19:43 -0400
commit0240e9951a4aa7eeb4c20685e3539158bf8c6477 (patch)
treef690599eb4a5decc0a21fb43ff27d84fa28c3090 /actions/showstream.php
parent86cc2a16a988b150e213ed3e0d48bc969ee1fad6 (diff)
fix output of statistics
darcs-hash:20080519141943-84dde-940b096ccb100a7f92eb0787dc7c1050d8184ad3.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index 39d5fec4b..f64af63ec 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -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');