getContainerEntity(); if (!$container) { } elgg_set_page_owner_guid($container->getGUID()); if (elgg_instanceof($container, 'group')) { elgg_push_breadcrumb($container->name, "pages/group/$container->guid/all"); } else { elgg_push_breadcrumb($container->name, "pages/owner/$container->username"); } pages_prepare_parent_breadcrumbs($page); elgg_push_breadcrumb($page->title, $page->getURL()); elgg_push_breadcrumb(elgg_echo('pages:history')); $title = $page->title . ": " . elgg_echo('pages:history'); $content = elgg_list_annotations(array( 'guid' => $page_guid, 'annotation_name' => 'page', 'limit' => 20, 'order_by' => "n_table.time_created desc" )); $body = elgg_view_layout('content', array( 'filter' => '', 'content' => $content, 'title' => $title, 'sidebar' => elgg_view('pages/sidebar/navigation', array('page' => $page)), )); echo elgg_view_page($title, $body);