aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-09-18 23:03:28 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-09-18 23:03:28 +0200
commit1b390f0b498f1eb977dd62dc06dd5753b0c7ea65 (patch)
treefce57c5add6337eb3cc78ae9ef5504e064fe75f5 /phpBB
parentc8564e6ce98980143c42a67b51b0c8327cfc12b5 (diff)
downloadforums-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.php2
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);
}
/**