From 5ec018ca19407e34ecd8ba9909731503b1aee51c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 16 Mar 2011 10:58:18 -0700 Subject: [PATCH] Fix tag nesting bug on group page --- actions/showgroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/showgroup.php b/actions/showgroup.php index b198352cb0..aa1f620880 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -323,7 +323,7 @@ class ShowgroupAction extends GroupDesignAction // TRANS: Header for group statistics on a group page (h2). $this->element('h2', null, _('Statistics')); - $this->elementEnd('dl'); + $this->elementStart('dl'); $this->element('dt', null, _m('LABEL','Created')); $this->element('dd', 'entity_created', date('j M Y', strtotime($this->group->created)));