diff options
Diffstat (limited to 'settings/statistics.php')
-rw-r--r-- | settings/statistics.php | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/settings/statistics.php b/settings/statistics.php index 45de3ba5c..f0bbcfe63 100644 --- a/settings/statistics.php +++ b/settings/statistics.php @@ -1,24 +1,23 @@ <?php - /** - * Elgg user settings functions. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ +/** + * Elgg user settings functions. + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - // Get the Elgg framework - require_once(dirname(dirname(__FILE__)) . "/engine/start.php"); +// 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($_SESSION['guid']); - } +// Make sure only valid admin users can see this +gatekeeper(); - // Display main admin menu - page_draw(elgg_echo("usersettings:statistics"),elgg_view_layout('two_column_left_sidebar','',elgg_view_title(elgg_echo("usersettings:statistics")) . elgg_view("usersettings/statistics"))); -?>
\ No newline at end of file +// Make sure we don't open a security hole ... +if ((!page_owner_entity()) || (!page_owner_entity()->canEdit())) { + set_page_owner($_SESSION['guid']); +} + +// Display main admin menu +page_draw(elgg_echo("usersettings:statistics"),elgg_view_layout('two_column_left_sidebar','',elgg_view_title(elgg_echo("usersettings:statistics")) . elgg_view("usersettings/statistics")));
\ No newline at end of file |