]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix output of statistics
authorEvan Prodromou <evan@prodromou.name>
Mon, 19 May 2008 14:19:43 +0000 (10:19 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 19 May 2008 14:19:43 +0000 (10:19 -0400)
darcs-hash:20080519141943-84dde-940b096ccb100a7f92eb0787dc7c1050d8184ad3.gz

actions/showstream.php

index 39d5fec4bf461a32e4540f3f7f81426b02c1e4e4..f64af63ec14ce9d884522298db7e18f697f178a5 100644 (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');