diff options
Diffstat (limited to 'views/default/layout')
-rw-r--r-- | views/default/layout/shells/two_sidebar.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/layout/shells/two_sidebar.php b/views/default/layout/shells/two_sidebar.php index 5a033e091..1ea527419 100644 --- a/views/default/layout/shells/two_sidebar.php +++ b/views/default/layout/shells/two_sidebar.php @@ -7,7 +7,7 @@ * * @uses $vars['content'] The content string for the main column * @uses $vars['sidebar'] Optional content that is displayed in the sidebar - * @uses $vars['sidebar-alt'] Optional content that is displayed in the alternate sidebar + * @uses $vars['sidebar_alt'] Optional content that is displayed in the alternate sidebar * @uses $vars['class'] Additional class to apply to layout */ @@ -23,10 +23,10 @@ if (isset($vars['class'])) { echo elgg_view('layout/elements/sidebar', $vars); ?> </div> - <div class="elgg-sidebar-alt elgg-aside"> + <div class="elgg-sidebar elgg-alt elgg-aside"> <?php //$params = $vars; - //$params['sidebar'] = $vars['sidebar-alt']; + //$params['sidebar'] = $vars['sidebar_alt']; $params = array( 'sidebar' => elgg_view('layout/objects/module', array('title' => 'Testing', 'body' => 'Hello, world!')) ); |