diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-08 09:09:12 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-08 09:09:12 -0500 |
commit | 3c425c0bd366965923933a3ee2b1bcb74d64046b (patch) | |
tree | aa4da6aff16abf70bf1da3cef978621bd19d15b3 /engine/lib/elgglib.php | |
parent | 00fc90b9c67b0e3438ca2307acd5d3e42332a462 (diff) | |
download | elgg-3c425c0bd366965923933a3ee2b1bcb74d64046b.tar.gz elgg-3c425c0bd366965923933a3ee2b1bcb74d64046b.tar.bz2 |
fixed some formatting
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r-- | engine/lib/elgglib.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index c32f7fa0c..6f9fb0ded 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -1144,9 +1144,11 @@ function elgg_dump($value, $to_screen = TRUE, $level = 'NOTICE') { global $CONFIG; // plugin can return false to stop the default logging method - $params = array('level' => $level, - 'msg' => $value, - 'to_screen' => $to_screen); + $params = array( + 'level' => $level, + 'msg' => $value, + 'to_screen' => $to_screen, + ); if (!elgg_trigger_plugin_hook('debug', 'log', $params, true)) { return; } @@ -1184,7 +1186,7 @@ function elgg_dump($value, $to_screen = TRUE, $level = 'NOTICE') { * @see CODING.txt * * @param str $msg Message to log / display. - * @param str $dep_version Human-readable *release* version: 1.7, 1.7.3 + * @param str $dep_version Human-readable *release* version: 1.7, 1.8, ... * @param int $backtrace_level How many levels back to display the backtrace. Useful if calling from * functions that are called from other places (like elgg_view()). Set * to -1 for a full backtrace. |