diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-30 23:04:47 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-30 23:04:47 +0000 |
commit | 5d090b23cca3b0f831b29fe4dad2926f1b3b33fc (patch) | |
tree | 562058ca452170e1556b26627cbae6ef63ae11f0 /settings/statistics.php | |
parent | dc5813300352f43b0ed67e0811967e1ec12628c3 (diff) | |
download | elgg-5d090b23cca3b0f831b29fe4dad2926f1b3b33fc.tar.gz elgg-5d090b23cca3b0f831b29fe4dad2926f1b3b33fc.tar.bz2 |
Refs #2344 - moves settings pages into the pages directory
git-svn-id: http://code.elgg.org/elgg/trunk@6986 36083f99-b078-4883-b0ff-0f9b5a30f544
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); |