diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-13 16:20:48 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-13 16:20:48 -0500 |
commit | 95346209886527207ffd036a58d6fd50572d34fd (patch) | |
tree | 921810ad8f06a818fb574c4e16eafa2d91f0a901 /mod | |
parent | e8006ee9715b8c615f4670d8e6b10b3dd8bbd459 (diff) | |
download | elgg-95346209886527207ffd036a58d6fd50572d34fd.tar.gz elgg-95346209886527207ffd036a58d6fd50572d34fd.tar.bz2 |
should be a ul rather than a div
Diffstat (limited to 'mod')
-rw-r--r-- | mod/groups/views/default/groups/profile/widgets.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/groups/views/default/groups/profile/widgets.php b/mod/groups/views/default/groups/profile/widgets.php index caf019a3a..7635cad4f 100644 --- a/mod/groups/views/default/groups/profile/widgets.php +++ b/mod/groups/views/default/groups/profile/widgets.php @@ -6,8 +6,8 @@ */ // tools widget area -echo '<div id="groups-tools" class="elgg-gallery elgg-gallery-fluid mtl clearfix">'; - +echo '<ul id="groups-tools" class="elgg-gallery elgg-gallery-fluid mtl clearfix">'; + // enable tools to extend this area echo elgg_view("groups/tool_latest", $vars); @@ -20,5 +20,5 @@ if ($right || $left) { echo $right; } -echo "</div>"; +echo "</ul>"; |