diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-12-05 16:18:38 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-12-05 16:18:38 +0000 |
commit | 54d01c6d966b87480336beddf6d92b89cb92d76b (patch) | |
tree | 85907a53e9a43be7320fe0cc2f5648a78c666468 | |
parent | a633716544ed7c6a2ec47b15dec6bd88c252ab31 (diff) | |
download | elgg-54d01c6d966b87480336beddf6d92b89cb92d76b.tar.gz elgg-54d01c6d966b87480336beddf6d92b89cb92d76b.tar.bz2 |
fixed bug introduced in [3608]
git-svn-id: http://code.elgg.org/elgg/trunk@3727 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/plugins.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 1e0a683c2..0c8af5497 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -358,7 +358,7 @@ function check_plugin_compatibility($manifest_elgg_version_string) { * are calling from. */ function find_plugin_settings($plugin_name = "") { - $options = array('type' => object, 'subtype' => 'plugin', 'limit' => 9999); + $options = array('type' => 'object', 'subtype' => 'plugin', 'limit' => 9999); $plugins = elgg_get_entities($options); $plugin_name = sanitise_string($plugin_name); if (!$plugin_name) { |