diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-09-18 22:41:02 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-09-18 22:41:02 +0200 |
commit | c8564e6ce98980143c42a67b51b0c8327cfc12b5 (patch) | |
tree | c6bb4e3b29707e0b47b85dfd1cfd03619891ff81 | |
parent | 1ad97424a469fe2e36a3c3a616b5e49def292779 (diff) | |
download | forums-c8564e6ce98980143c42a67b51b0c8327cfc12b5.tar forums-c8564e6ce98980143c42a67b51b0c8327cfc12b5.tar.gz forums-c8564e6ce98980143c42a67b51b0c8327cfc12b5.tar.bz2 forums-c8564e6ce98980143c42a67b51b0c8327cfc12b5.tar.xz forums-c8564e6ce98980143c42a67b51b0c8327cfc12b5.zip |
[ticket/10369] Add warning about paths outside of phpBB root not being filtered
PHPBB3-10369
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index cd856f55a7..2e445192ae 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4001,6 +4001,8 @@ function msg_handler($errno, $msg_text, $errfile, $errline) * * @param string $errfile Absolute file path * (e.g. /var/www/phpbb3/phpBB/includes/functions.php) +* Please note that if $errfile is outside of the phpBB root, +* the root path will not be found and can not be filtered. * @return string Relative file path * (e.g. /includes/functions.php) */ |