aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-06-14 18:16:57 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-06-14 18:16:57 +0200
commit5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53 (patch)
tree153556b453929f1cac290c59069b192d45edfde7 /phpBB
parenta120e4bdf6ba4afb8e76f9528c30fc7d52eb9cd9 (diff)
downloadforums-5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53.tar
forums-5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53.tar.gz
forums-5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53.tar.bz2
forums-5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53.tar.xz
forums-5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53.zip
[ticket/12708] Make the path absolute by using __DIR__.
PHPBB3-12708
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install/install_main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_main.php b/phpBB/install/install_main.php
index b32dd38d90..d5874dac83 100644
--- a/phpBB/install/install_main.php
+++ b/phpBB/install/install_main.php
@@ -56,7 +56,7 @@ class install_main extends module
case 'license' :
$title = $lang['GPL'];
- $body = implode("<br/>\n", file('../docs/LICENSE.txt'));
+ $body = implode("<br/>\n", file(__DIR__ . '/../docs/LICENSE.txt'));
break;
case 'support' :