From 82593cd2bc056da73caa1b1e981c5a9ead0f1bf2 Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 27 Apr 2011 02:37:16 +0000 Subject: Refs #3362. Plugins don't check deps upon boot. Made package and manifest private properties of ElggPlugin and added ->getPackage() and ->getManifest(). git-svn-id: http://code.elgg.org/elgg/trunk@9030 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/core/settings/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'views/default/core/settings') diff --git a/views/default/core/settings/tools.php b/views/default/core/settings/tools.php index ff02c9183..87c98902f 100644 --- a/views/default/core/settings/tools.php +++ b/views/default/core/settings/tools.php @@ -29,7 +29,7 @@ foreach ($installed_plugins as $plugin) { if (elgg_view_exists("usersettings/$plugin_id/edit") || elgg_view_exists("plugins/$plugin_id/usersettings")) { - $title = $plugin->manifest->getName(); + $title = $plugin->getManifest()->getName(); $body = elgg_view_form('plugins/usersettings/save', array(), array('entity' => $plugin)); echo elgg_view_module('info', $title, $body); } -- cgit v1.2.3 From 0665c9cdf7d1a695d5009152193c092c2cdf8588 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 12 Jun 2011 02:22:19 +0000 Subject: adjusted the spacing between the settings tools text and the surrounding elements git-svn-id: http://code.elgg.org/elgg/trunk@9189 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/core/settings/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'views/default/core/settings') diff --git a/views/default/core/settings/tools.php b/views/default/core/settings/tools.php index 87c98902f..a249adf82 100644 --- a/views/default/core/settings/tools.php +++ b/views/default/core/settings/tools.php @@ -11,7 +11,7 @@ // Description of what's going on echo elgg_view('output/longtext', array( 'value' => elgg_echo("usersettings:plugins:description"), - 'class' => 'user-settings mtm', + 'class' => 'user-settings mtn mbm', )); $limit = get_input('limit', 10); -- cgit v1.2.3