diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-24 19:42:25 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-24 19:42:25 +0000 |
commit | 1a0c039a493f1af8090c58bb7209c92c01bf716e (patch) | |
tree | 4f88e4644036fed0150e71bdbb8efd60cddf229c /mod/groups/groupprofile.php | |
parent | 1b64251263c6621c58467f8a8f3dba4637a3e3e0 (diff) | |
download | elgg-1a0c039a493f1af8090c58bb7209c92c01bf716e.tar.gz elgg-1a0c039a493f1af8090c58bb7209c92c01bf716e.tar.bz2 |
Removing an infinite loop in groups.
git-svn-id: https://code.elgg.org/elgg/trunk@2937 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/groupprofile.php')
-rw-r--r-- | mod/groups/groupprofile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/groupprofile.php b/mod/groups/groupprofile.php index 8945e6cc6..7d84f5d25 100644 --- a/mod/groups/groupprofile.php +++ b/mod/groups/groupprofile.php @@ -50,7 +50,7 @@ $title = elgg_echo('groups:notfound'); $area2 = elgg_view_title($title); - $area2 .= elgg_echo('groups:notfound:details'); + $area2 .= "<div class='contentWrapper'>" . elgg_echo('groups:notfound:details') . "</div>"; $body = elgg_view_layout('two_column_left_sidebar', "", $area2,""); } |