diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 00:56:55 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 00:56:55 +0000 |
commit | 855b008013aad0426ab0332b040bddb033bb6af9 (patch) | |
tree | 70c137e5c9a9c916bb9f8172daf3bd0483895bf6 /mod/reportedcontent/add.php | |
parent | 71dc8cbf9eecb4de149bc96bb5758b866116b1c8 (diff) | |
download | elgg-855b008013aad0426ab0332b040bddb033bb6af9.tar.gz elgg-855b008013aad0426ab0332b040bddb033bb6af9.tar.bz2 |
cleaned up the reported content plugin
git-svn-id: http://code.elgg.org/elgg/trunk@7466 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/add.php')
-rw-r--r-- | mod/reportedcontent/add.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/mod/reportedcontent/add.php b/mod/reportedcontent/add.php deleted file mode 100644 index 1194627f1..000000000 --- a/mod/reportedcontent/add.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** - * Elgg reported content send report page - * - * @package ElggReportedContent - */ - -// Start engine -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - -// You need to be logged in for this one -gatekeeper(); - -// Get the current page's owner -$page_owner = elgg_get_page_owner(); -if ($page_owner === false || is_null($page_owner)) { - $page_owner = get_loggedin_user(); - set_page_owner($page_owner->getGUID()); -} - -$area2 .= elgg_view_title(elgg_echo('reportedcontent:this'), false); -$area2 .= elgg_view('reportedcontent/form'); -$area3 .= elgg_echo('reportedcontent:warning'); - -$params = array( - 'content' => $area2, - 'sidebar' => $area3 -); -$body = elgg_view_layout('one_column_with_sidebar', $params); - -echo elgg_view_page(elgg_echo('reportedcontent:this'), $body);
\ No newline at end of file |