diff options
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 12 |
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'); |