diff options
Diffstat (limited to 'settings/plugins.php')
-rw-r--r-- | settings/plugins.php | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/settings/plugins.php b/settings/plugins.php index 3db665a16..219302ebc 100644 --- a/settings/plugins.php +++ b/settings/plugins.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 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 users can see this +gatekeeper(); - // Display main admin menu - page_draw(elgg_echo("usersettings:plugins"),elgg_view_layout('two_column_left_sidebar','',elgg_view_title(elgg_echo("usersettings:plugins")) . elgg_view("usersettings/plugins", array('installed_plugins' => get_installed_plugins())))); -?>
\ 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:plugins"),elgg_view_layout('two_column_left_sidebar','',elgg_view_title(elgg_echo("usersettings:plugins")) . elgg_view("usersettings/plugins", array('installed_plugins' => get_installed_plugins())))); |