diff options
| author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-11 01:45:00 +0000 | 
|---|---|---|
| committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-11 01:45:00 +0000 | 
| commit | a665ef2e94312ed5479c1e730d0d429c33c4dea8 (patch) | |
| tree | 4786dca884e4d9a09d1b851427592b2b0a53ba2e | |
| parent | 426efeaf514a04fa00eb38747a0d09167402ea0f (diff) | |
| download | elgg-a665ef2e94312ed5479c1e730d0d429c33c4dea8.tar.gz elgg-a665ef2e94312ed5479c1e730d0d429c33c4dea8.tar.bz2 | |
not outputing all the plugin information in diagnostics plugin due to new plugin system structure
git-svn-id: http://code.elgg.org/elgg/trunk@8108 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | mod/diagnostics/start.php | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/mod/diagnostics/start.php b/mod/diagnostics/start.php index 78e01d0ad..e3d7abd1a 100644 --- a/mod/diagnostics/start.php +++ b/mod/diagnostics/start.php @@ -45,7 +45,8 @@ function diagnostics_basic_hook($hook, $entity_type, $returnvalue, $params) {   * @return tring   */  function diagnostics_plugins_hook($hook, $entity_type, $returnvalue, $params) { -	$returnvalue .= elgg_echo('diagnostics:report:plugins', array(print_r(elgg_get_plugins(), true))); +	// @todo this is a really bad idea because of the new plugin system +	//$returnvalue .= elgg_echo('diagnostics:report:plugins', array(print_r(elgg_get_plugins(), true)));  	return $returnvalue;  } | 
