diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 12:28:33 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-13 12:28:33 +0000 |
commit | 090f60fb6ace958748752e439548f1fa8673258f (patch) | |
tree | a39aa1cf7beeb1ae657feb00edd785fecae94fc4 /mod/pages/history.php | |
parent | 55724ff6f6818f2c1b16d4bacd912ae2eb745fdb (diff) | |
download | elgg-090f60fb6ace958748752e439548f1fa8673258f.tar.gz elgg-090f60fb6ace958748752e439548f1fa8673258f.tar.bz2 |
Once again removing an accidentally committed plugin
git-svn-id: https://code.elgg.org/elgg/trunk@1896 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/history.php')
-rw-r--r-- | mod/pages/history.php | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/mod/pages/history.php b/mod/pages/history.php deleted file mode 100644 index 135ffe3d2..000000000 --- a/mod/pages/history.php +++ /dev/null @@ -1,50 +0,0 @@ -<?php - /** - * Elgg Pages - * - * @package ElggPages - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd - * @copyright Curverider Ltd 2008 - * @link http://elgg.com/ - */ - - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - gatekeeper(); - - $page_guid = get_input('page_guid'); - - $pages = get_entity($page_guid); - if ($pages->container_guid) { - set_page_owner($pages->container_guid); - } else { - set_page_owner($pages->owner_guid); - } - - $limit = (int)get_input('limit', 20); - $offset = (int)get_input('offset'); - - $page_guid = get_input('page_guid'); - $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); - - $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); - - - pages_set_navigation_parent($pages); - $area3 = elgg_view('pages/sidebar/tree'); - - $body = elgg_view_layout('two_column_left_sidebar', '', $area2, $area3); - - page_draw($title, $body); -?>
\ No newline at end of file |