diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2011-10-13 22:08:26 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2011-10-13 22:08:26 -0700 |
commit | 96604b6836edc0ee2f9bfc58fdbaedf19a6f099c (patch) | |
tree | 3e5a970928925a533a119d3b07b0ea9444c1b743 /engine/classes/ElggPluginManifestParser18.php | |
parent | a11aec8c7b88e78581a5550c059c2cfab099a02d (diff) | |
download | elgg-96604b6836edc0ee2f9bfc58fdbaedf19a6f099c.tar.gz elgg-96604b6836edc0ee2f9bfc58fdbaedf19a6f099c.tar.bz2 |
Fixes #3917. Removed uses of admin interface in manifests. Removed related code.
Diffstat (limited to 'engine/classes/ElggPluginManifestParser18.php')
-rw-r--r-- | engine/classes/ElggPluginManifestParser18.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/classes/ElggPluginManifestParser18.php b/engine/classes/ElggPluginManifestParser18.php index db8b3dc6a..554e28c02 100644 --- a/engine/classes/ElggPluginManifestParser18.php +++ b/engine/classes/ElggPluginManifestParser18.php @@ -16,7 +16,7 @@ class ElggPluginManifestParser18 extends ElggPluginManifestParser { 'name', 'author', 'version', 'blurb', 'description', 'website', 'copyright', 'license', 'requires', 'suggests', 'screenshot', 'category', 'conflicts', 'provides', - 'admin_interface', 'activate_on_install' + 'activate_on_install' ); /** @@ -46,7 +46,6 @@ class ElggPluginManifestParser18 extends ElggPluginManifestParser { case 'website': case 'copyright': case 'license': - case 'admin_interface': case 'activate_on_install': $parsed[$element->name] = $element->content; break; |