aboutsummaryrefslogtreecommitdiff
path: root/entities
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-01 13:47:15 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-01 13:47:15 +0000
commitfa39c6aaf2f9f87cfd89feaebdc22cf313396ec7 (patch)
treea0570c34017059774611c5a9e9ff8067b7905d99 /entities
parentc2930b6bafa23278a91fbe217f324ad4bcf98e31 (diff)
downloadelgg-fa39c6aaf2f9f87cfd89feaebdc22cf313396ec7.tar.gz
elgg-fa39c6aaf2f9f87cfd89feaebdc22cf313396ec7.tar.bz2
Widgets now work in three columns
git-svn-id: https://code.elgg.org/elgg/trunk@1653 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'entities')
-rw-r--r--entities/index.php5
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 {