diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-06 15:28:58 +0100 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-06 15:28:58 +0100 |
commit | 0994fa31d6281167f410b659761ceb332ace7913 (patch) | |
tree | 11a2f849a365f073e95587528e2541ad135a1499 | |
parent | 63a07ede62cc814c5aac0de9e15768afcc81eb4b (diff) |
Added missing closing span tag
-rw-r--r-- | lib/grouplist.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/grouplist.php b/lib/grouplist.php index d9547acb9..cc734bdd0 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -119,6 +119,7 @@ class GroupList extends Widget if ($this->group->location) { $this->out->elementStart('span', 'label'); $this->out->raw($this->highlight($this->group->location)); + $this->out->elementEnd('span'); } if ($this->group->homepage) { $this->out->elementStart('a', array('href' => $this->group->homepage, |