diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-16 15:25:25 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-16 15:25:25 +0000 |
commit | 01cbf6c0c700a97a2eba489638f917f08070095c (patch) | |
tree | dd7b4160d2e8d1619e6f0a040f1736635a3c36f1 /mod/pages/history.php | |
parent | 29fba4847177d6e8be91f9d8899dc28b36b2af00 (diff) | |
download | elgg-01cbf6c0c700a97a2eba489638f917f08070095c.tar.gz elgg-01cbf6c0c700a97a2eba489638f917f08070095c.tar.bz2 |
More code cleanup to pages.
git-svn-id: http://code.elgg.org/elgg/trunk@6730 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/history.php')
-rw-r--r-- | mod/pages/history.php | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/mod/pages/history.php b/mod/pages/history.php index c4e4c85fa..d929a33c9 100644 --- a/mod/pages/history.php +++ b/mod/pages/history.php @@ -29,19 +29,12 @@ $pages = get_entity($page_guid); add_submenu_item(sprintf(elgg_echo("pages:user"), page_owner_entity()->name), $CONFIG->url . "pg/pages/owned/" . page_owner_entity()->username, 'pageslinksgeneral'); $title = $pages->title . ": " . elgg_echo("pages:history"); -$area2 = elgg_view_title($title); - -$context = get_context(); - -set_context('search'); - -$area2 .= list_annotations($page_guid, 'page', $limit, false); - -set_context($context); +$content = elgg_view_title($title); +$content.= list_annotations($page_guid, 'page', $limit, false); pages_set_navigation_parent($pages); -$area3 = elgg_view('pages/sidebar/tree'); +$sidebar = elgg_view('pages/sidebar/tree'); -$body = elgg_view_layout('one_column_with_sidebar', $area3, $area2); +$body = elgg_view_layout('one_column_with_sidebar', $content, $sidebar); page_draw($title, $body);
\ No newline at end of file |