diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-09 01:02:00 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-09 01:02:00 +0000 |
commit | 0154f867118ce33b2cfaa51677436e00502e223f (patch) | |
tree | 4e3021d8ae95c84c237ec2a867ba0caf4ad287b9 /pages/settings/tools.php | |
parent | f6498706d2408aedbb9069e08b71c635b8c9a9d3 (diff) | |
download | elgg-0154f867118ce33b2cfaa51677436e00502e223f.tar.gz elgg-0154f867118ce33b2cfaa51677436e00502e223f.tar.bz2 |
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
Diffstat (limited to 'pages/settings/tools.php')
-rw-r--r-- | pages/settings/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/settings/tools.php b/pages/settings/tools.php index dcb026677..ea7c904e5 100644 --- a/pages/settings/tools.php +++ b/pages/settings/tools.php @@ -17,7 +17,7 @@ if ((!elgg_get_page_owner_entity()) || (!elgg_get_page_owner_entity()->canEdit() $title = elgg_echo("usersettings:plugins"); $content = elgg_view("core/settings/tools", - array('installed_plugins' => get_installed_plugins())); + array('installed_plugins' => elgg_get_plugins())); $params = array( 'content' => $content, |