diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-16 02:16:45 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-16 02:16:45 +0000 |
commit | 2c443c0f84c10b19324f6be584e46efe71d0bf84 (patch) | |
tree | 4dd5bf2727e1b794515aac2bae039eb6e85f8ce2 /views/default/layout/shells/content.php | |
parent | fcc68792fd00a2778746f6813efd0a5d879584d6 (diff) | |
download | elgg-2c443c0f84c10b19324f6be584e46efe71d0bf84.tar.gz elgg-2c443c0f84c10b19324f6be584e46efe71d0bf84.tar.bz2 |
layout views should use 'content' to support alternate viewtypes (like rss) - updated the one_sidebar view
git-svn-id: http://code.elgg.org/elgg/trunk@7641 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/layout/shells/content.php')
-rw-r--r-- | views/default/layout/shells/content.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/layout/shells/content.php b/views/default/layout/shells/content.php index 787445fd1..87d314b2c 100644 --- a/views/default/layout/shells/content.php +++ b/views/default/layout/shells/content.php @@ -48,7 +48,7 @@ $footer = elgg_view('layout/shells/content/footer', $params); $body = $nav . $header . $filter . $content . $footer; $params = array( - 'body' => $body, + 'content' => $body, 'sidebar' => $sidebar, ); if (isset($vars['class'])) { |