aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/plugins.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-12-05 16:18:38 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-12-05 16:18:38 +0000
commit54d01c6d966b87480336beddf6d92b89cb92d76b (patch)
tree85907a53e9a43be7320fe0cc2f5648a78c666468 /engine/lib/plugins.php
parenta633716544ed7c6a2ec47b15dec6bd88c252ab31 (diff)
downloadelgg-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
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r--engine/lib/plugins.php2
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) {