* @copyright Curverider Ltd 2008-2010 * @link http://elgg.org/ */ // 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 = page_owner_entity(); if ($page_owner === false || is_null($page_owner)) { $page_owner = $_SESSION['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'); // Format page $body = elgg_view_layout('one_column_with_sidebar', $area2, $area3); // Draw it page_draw(elgg_echo('reportedcontent:this'),$body);