diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-13 16:20:48 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-16 19:53:04 -0500 |
commit | c75ee6f8807e34d3d9c4c941e6d0e656a5b1b9b3 (patch) | |
tree | 33608e0284ae2a231ce7183999aa7fdd53bdb765 /mod | |
parent | 7904f4c40fb4f2520524c151a1e71569a3993f58 (diff) | |
download | elgg-c75ee6f8807e34d3d9c4c941e6d0e656a5b1b9b3.tar.gz elgg-c75ee6f8807e34d3d9c4c941e6d0e656a5b1b9b3.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>"; |