diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-09-18 23:03:28 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-09-18 23:03:28 +0200 |
commit | 1b390f0b498f1eb977dd62dc06dd5753b0c7ea65 (patch) | |
tree | fce57c5add6337eb3cc78ae9ef5504e064fe75f5 /phpBB | |
parent | c8564e6ce98980143c42a67b51b0c8327cfc12b5 (diff) | |
download | forums-1b390f0b498f1eb977dd62dc06dd5753b0c7ea65.tar forums-1b390f0b498f1eb977dd62dc06dd5753b0c7ea65.tar.gz forums-1b390f0b498f1eb977dd62dc06dd5753b0c7ea65.tar.bz2 forums-1b390f0b498f1eb977dd62dc06dd5753b0c7ea65.tar.xz forums-1b390f0b498f1eb977dd62dc06dd5753b0c7ea65.zip |
[ticket/10369] Replace root path with "[ROOT]" as per IRC.
PHPBB3-10369
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 2e445192ae..e01bbe36d1 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4015,7 +4015,7 @@ function phpbb_filter_root_path($errfile) $root_path = phpbb_realpath(dirname(__FILE__) . '/../'); } - return str_replace(array($root_path, '\\'), array('', '/'), $errfile); + return str_replace(array($root_path, '\\'), array('[ROOT]', '/'), $errfile); } /** |