diff options
Diffstat (limited to 'settings/statistics.php')
-rw-r--r-- | settings/statistics.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/settings/statistics.php b/settings/statistics.php deleted file mode 100644 index e0d2edbf5..000000000 --- a/settings/statistics.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php -/** - * Elgg user statistics. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ - -// Get the Elgg framework -require_once(dirname(dirname(__FILE__)) . "/engine/start.php"); - -// Make sure only valid admin users can see this -gatekeeper(); - -// Make sure we don't open a security hole ... -if ((!page_owner_entity()) || (!page_owner_entity()->canEdit())) { - set_page_owner(get_loggedin_userid()); -} - -$content = elgg_view_title(elgg_echo("usersettings:statistics")); -$content .= elgg_view("usersettings/statistics"); - -$body = elgg_view_layout('one_column_with_sidebar', $content); - -page_draw(elgg_echo("usersettings:statistics"), $body); |