diff options
| author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 02:33:55 +0000 | 
|---|---|---|
| committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-16 02:33:55 +0000 | 
| commit | 17c17807cc0b63d322d56acfae4f30399041cdb5 (patch) | |
| tree | fe780bd74f828ab2fc9c107c0bb390f3a18b74c4 /settings/plugins.php | |
| parent | 721763663962364485e5a9958854a6311f32298b (diff) | |
| download | elgg-17c17807cc0b63d322d56acfae4f30399041cdb5.tar.gz elgg-17c17807cc0b63d322d56acfae4f30399041cdb5.tar.bz2  | |
Standardized files
git-svn-id: http://code.elgg.org/elgg/trunk@3553 36083f99-b078-4883-b0ff-0f9b5a30f544
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()))));  | 
