diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-01 13:47:15 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-01 13:47:15 +0000 |
commit | fa39c6aaf2f9f87cfd89feaebdc22cf313396ec7 (patch) | |
tree | a0570c34017059774611c5a9e9ff8067b7905d99 /entities | |
parent | c2930b6bafa23278a91fbe217f324ad4bcf98e31 (diff) | |
download | elgg-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.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 {
|