diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-09-19 17:45:32 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-09-19 17:45:32 +0200 |
commit | 79ad3a3f326f760fb2930b16533c46efc872dae2 (patch) | |
tree | e4447580e240022df377d4a747ea3d1e34fa8a95 /phpBB/includes | |
parent | fc2af460ee2112ee5bcbd8076441ebcf8aea9513 (diff) | |
download | forums-79ad3a3f326f760fb2930b16533c46efc872dae2.tar forums-79ad3a3f326f760fb2930b16533c46efc872dae2.tar.gz forums-79ad3a3f326f760fb2930b16533c46efc872dae2.tar.bz2 forums-79ad3a3f326f760fb2930b16533c46efc872dae2.tar.xz forums-79ad3a3f326f760fb2930b16533c46efc872dae2.zip |
[ticket/10370] Add function documentation for get_stacktrace().
PHPBB3-10370
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d77517f2da..c2b099d48a 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3387,7 +3387,12 @@ function add_log() } /** -* Return a nicely formatted backtrace (parts from the php manual by diz at ysagoon dot com) +* Return a nicely formatted backtrace. +* +* Turns the array returned by debug_backtrace() into HTML markup. +* Also filters out absolute paths to phpBB root. +* +* @return string HTML markup */ function get_backtrace() { |