aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/history.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/pages/history.php')
-rw-r--r--mod/pages/history.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/pages/history.php b/mod/pages/history.php
index d39bf7ae0..d40dfaeb8 100644
--- a/mod/pages/history.php
+++ b/mod/pages/history.php
@@ -35,6 +35,10 @@ $content.= list_annotations($page_guid, 'page', $limit, false);
pages_set_navigation_parent($pages);
$sidebar = elgg_view('pages/sidebar/tree');
-$body = elgg_view_layout('one_column_with_sidebar', $content, $sidebar);
+$params = array(
+ 'content' => $content,
+ 'sidebar' => $sidebar
+);
+$body = elgg_view_layout('one_column_with_sidebar', $params);
echo elgg_view_page($title, $body);