diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-09 00:30:35 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-09 00:30:35 +0000 |
commit | b97b391cdd12ec62931c2a825ed4c70478ec5db0 (patch) | |
tree | 68c6d83de079eb3b54dfbb543ff11b028d24ad4b /views/default/core | |
parent | 033b7726df3db6a96f2ade8e782709a6602ac3bc (diff) | |
download | elgg-b97b391cdd12ec62931c2a825ed4c70478ec5db0.tar.gz elgg-b97b391cdd12ec62931c2a825ed4c70478ec5db0.tar.bz2 |
Refs #2874: Using elgg_is_active_plugin() in core and bundled plugins.
git-svn-id: http://code.elgg.org/elgg/trunk@8082 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/core')
-rw-r--r-- | views/default/core/settings/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/core/settings/tools.php b/views/default/core/settings/tools.php index 8f5ee4af6..42b2227ff 100644 --- a/views/default/core/settings/tools.php +++ b/views/default/core/settings/tools.php @@ -19,7 +19,7 @@ $count = count($installed_plugins); // Display list of plugins $n = 0; foreach ($installed_plugins as $plugin => $data) { - if (is_plugin_enabled($plugin)) { + if (elgg_is_active_plugin($plugin)) { echo elgg_view("core/settings/tools/plugin", array('plugin' => $plugin, 'details' => $data)); } }
\ No newline at end of file |