From: cash Date: Fri, 11 Feb 2011 01:45:00 +0000 (+0000) Subject: not outputing all the plugin information in diagnostics plugin due to new plugin... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a665ef2e94312ed5479c1e730d0d429c33c4dea8;p=lorea%2Felgg.git 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 --- 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; }