diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-10-18 22:47:04 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-22 21:29:52 +0200 |
commit | 597297b169e2ae14684ad1f40c8e083be22b241d (patch) | |
tree | 41a12be0ddf52aa186e23dc75c05b4ae11d1d9da /phpBB/common.php | |
parent | cc1a96a8045b6abe5b1234afb045912d53669fee (diff) | |
download | forums-597297b169e2ae14684ad1f40c8e083be22b241d.tar forums-597297b169e2ae14684ad1f40c8e083be22b241d.tar.gz forums-597297b169e2ae14684ad1f40c8e083be22b241d.tar.bz2 forums-597297b169e2ae14684ad1f40c8e083be22b241d.tar.xz forums-597297b169e2ae14684ad1f40c8e083be22b241d.zip |
[ticket/14044] Deduplicate the installers
PHPBB3-14044
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 0b898d9553..38761cfadc 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -52,7 +52,7 @@ if (!defined('PHPBB_INSTALLED')) } // $phpbb_root_path accounts for redirects from e.g. /adm - $script_path = trim(dirname($script_name)) . '/' . $phpbb_root_path . 'install/index.' . $phpEx; + $script_path = trim(dirname($script_name)) . '/' . $phpbb_root_path . 'install/app.' . $phpEx; // Replace any number of consecutive backslashes and/or slashes with a single slash // (could happen on some proxy setups and/or Windows servers) $script_path = preg_replace('#[\\\\/]{2,}#', '/', $script_path); |