diff options
| author | Sem <sembrestels@riseup.net> | 2012-05-20 02:39:46 +0200 | 
|---|---|---|
| committer | Sem <sembrestels@riseup.net> | 2012-05-20 02:39:46 +0200 | 
| commit | 59bec8bc3e61e6ad537c1418e64094d0665470af (patch) | |
| tree | 9f9826a3ca09a23c46d63284a93bf3523e60f36c /engine/lib/plugins.php | |
| parent | 5da1b3002e12ed112c92c0902f518c82bdd3fbe0 (diff) | |
| parent | 14d2c70e1872f4045fc857be9b9022d085f1fbd1 (diff) | |
| download | elgg-59bec8bc3e61e6ad537c1418e64094d0665470af.tar.gz elgg-59bec8bc3e61e6ad537c1418e64094d0665470af.tar.bz2  | |
Merge branch '1.8' of git://github.com/Elgg/Elgg into lorea-preprod
Diffstat (limited to 'engine/lib/plugins.php')
| -rw-r--r-- | engine/lib/plugins.php | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 123fb18d8..39a76db5d 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -93,10 +93,13 @@ function elgg_get_plugin_ids_in_dir($dir = null) {  function elgg_generate_plugin_entities() {  	$site = get_config('site');  	$dir = elgg_get_plugins_path(); +	$db_prefix = elgg_get_config('dbprefix');  	$options = array(  		'type' => 'object',  		'subtype' => 'plugin', +		'selects' => array('plugin_oe.*'), +		'joins' => array("JOIN {$db_prefix}objects_entity plugin_oe on plugin_oe.guid = e.guid"),  		'limit' => ELGG_ENTITIES_NO_VALUE  	); @@ -352,7 +355,11 @@ function elgg_get_plugins($status = 'active', $site_guid = null) {  		'type' => 'object',  		'subtype' => 'plugin',  		'limit' => ELGG_ENTITIES_NO_VALUE, -		'joins' => array("JOIN {$db_prefix}private_settings ps on ps.entity_guid = e.guid"), +		'selects' => array('plugin_oe.*'), +		'joins' => array( +			"JOIN {$db_prefix}private_settings ps on ps.entity_guid = e.guid", +			"JOIN {$db_prefix}objects_entity plugin_oe on plugin_oe.guid = e.guid" +			),  		'wheres' => array("ps.name = '$priority'"),  		'order_by' => "CAST(ps.value as unsigned), e.guid"  	);  | 
