diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-06-14 18:16:57 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-14 18:16:57 +0200 |
commit | 5f4a0586553ccbbd5bc5261ad1c8a7257ca68c53 (patch) | |
tree | 153556b453929f1cac290c59069b192d45edfde7 /phpBB | |
parent | a120e4bdf6ba4afb8e76f9528c30fc7d52eb9cd9 (diff) | |
download | forums-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.php | 2 |
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' : |