1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/10369] Rename filter_errfile() to filter_root_path().

PHPBB3-10369
This commit is contained in:
Andreas Fischer
2011-09-18 22:32:25 +02:00
parent 9006984d5a
commit 1ad97424a4
2 changed files with 4 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ class phpbb_error_collector
list($errno, $msg_text, $errfile, $errline) = $error;
// Prevent leakage of local path to phpBB install
$errfile = phpbb_filter_errfile($errfile);
$errfile = phpbb_filter_root_path($errfile);
$text .= "Errno $errno: $msg_text at $errfile line $errline";
}