From 0154f867118ce33b2cfaa51677436e00502e223f Mon Sep 17 00:00:00 2001 From: brettp Date: Wed, 9 Feb 2011 01:02:00 +0000 Subject: Refs #2874: Using elgg_get_plugins() instead of get_installed_plugins(). git-svn-id: http://code.elgg.org/elgg/trunk@8084 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/core/settings/tools.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'views/default/core/settings/tools.php') diff --git a/views/default/core/settings/tools.php b/views/default/core/settings/tools.php index 42b2227ff..e280e0d8e 100644 --- a/views/default/core/settings/tools.php +++ b/views/default/core/settings/tools.php @@ -7,7 +7,9 @@ */ // Description of what's going on -echo "
".elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description")))."
"; +echo "
" + . elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description"))) + . "
"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); @@ -18,8 +20,8 @@ $count = count($installed_plugins); // Display list of plugins $n = 0; -foreach ($installed_plugins as $plugin => $data) { - if (elgg_is_active_plugin($plugin)) { - echo elgg_view("core/settings/tools/plugin", array('plugin' => $plugin, 'details' => $data)); +foreach ($installed_plugins as $plugin) { + if ($plugin->isActive()) { + echo elgg_view("core/settings/tools/plugin", array('plugin' => $plugin)); } } \ No newline at end of file -- cgit v1.2.3