diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 23:07:31 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 23:07:31 +0000 |
commit | bd28cf062af5f516e8c1b273577a530fc215255b (patch) | |
tree | dcca8a9cbcfe9fe961b6fef2b6a398be49a05b9e /views/default/admin | |
parent | eaf59ee54011c3dcc4ee7e344e0dd06160fd9bf4 (diff) | |
download | elgg-bd28cf062af5f516e8c1b273577a530fc215255b.tar.gz elgg-bd28cf062af5f516e8c1b273577a530fc215255b.tar.bz2 |
Fixes #2928: Invalid plugins are shown on the advance page with details about the problem and a link to the docs.
git-svn-id: http://code.elgg.org/elgg/trunk@8709 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin')
-rw-r--r-- | views/default/admin/plugins/advanced.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/views/default/admin/plugins/advanced.php b/views/default/admin/plugins/advanced.php index e78dbe2f1..02e9ae58b 100644 --- a/views/default/admin/plugins/advanced.php +++ b/views/default/admin/plugins/advanced.php @@ -9,7 +9,7 @@ */ elgg_generate_plugin_entities(); -$installed_plugins = elgg_get_plugins('any'); +$installed_plugins = elgg_get_plugins('any', true); $show_category = get_input('category', null); // Get a list of the all categories @@ -85,9 +85,6 @@ $buttons .= $category_form; <div id="elgg-plugin-list"> <?php -$options = array( - -); echo elgg_view_entity_list($installed_plugins, 0, 0, 0, true, false, false); ?> |