aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-07-02 19:27:50 -0400
committercash <cash.costello@gmail.com>2011-07-02 19:27:50 -0400
commitc7e9b59e95b34c0d850e0b53c90a7b9f04ed4d2b (patch)
tree48a2baf3a9ad823670eaa6e8b57f8a9dca9ed419
parenta60e2d661f8895ed643b5c0b38e18add806a6883 (diff)
downloadelgg-c7e9b59e95b34c0d850e0b53c90a7b9f04ed4d2b.tar.gz
elgg-c7e9b59e95b34c0d850e0b53c90a7b9f04ed4d2b.tar.bz2
returning false to stop elgg_dump() from also displaying the debugging information to the screen
-rw-r--r--mod/developers/classes/ElggLogCache.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/developers/classes/ElggLogCache.php b/mod/developers/classes/ElggLogCache.php
index 19df598d7..5bd4bce28 100644
--- a/mod/developers/classes/ElggLogCache.php
+++ b/mod/developers/classes/ElggLogCache.php
@@ -30,6 +30,7 @@ class ElggLogCache {
*/
public function insertDump($hook, $type, $result, $params) {
$this->insert($params['msg']);
+ return false;
}
/**