From 0240e9951a4aa7eeb4c20685e3539158bf8c6477 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 19 May 2008 10:19:43 -0400 Subject: [PATCH] fix output of statistics darcs-hash:20080519141943-84dde-940b096ccb100a7f92eb0787dc7c1050d8184ad3.gz --- actions/showstream.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/actions/showstream.php b/actions/showstream.php index 39d5fec4bf..f64af63ec1 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');