diff options
Diffstat (limited to 'entities')
-rw-r--r-- | entities/index.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/entities/index.php b/entities/index.php index 3e573b338..b9890c1f8 100644 --- a/entities/index.php +++ b/entities/index.php @@ -35,8 +35,11 @@ // Set the body to be the full view of the entity, and the title to be its title
$area2 = elgg_view_entity($entity,true);
- if ($shell)
+ if ($shell) {
$body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
+ } else {
+ $body = $area2;
+ }
// Otherwise?
} else {
|