diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2006-07-23 21:26:53 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2006-07-23 21:26:53 +0000 |
commit | afad755f938c3ff287bf677dc55a952655ab1720 (patch) | |
tree | a7f010e33fdcc267d4939bf83909e429751dd659 | |
parent | 185702fd5de5c7dfa9761ff0e79b7b410bcd1554 (diff) | |
download | forums-afad755f938c3ff287bf677dc55a952655ab1720.tar forums-afad755f938c3ff287bf677dc55a952655ab1720.tar.gz forums-afad755f938c3ff287bf677dc55a952655ab1720.tar.bz2 forums-afad755f938c3ff287bf677dc55a952655ab1720.tar.xz forums-afad755f938c3ff287bf677dc55a952655ab1720.zip |
Fixed: a double slash appears in the installer URL if you go to the board and config.php is missing
git-svn-id: file:///svn/phpbb/trunk@6205 89ea8834-ac86-4346-8a33-228a782c2dd0
-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 0277b356cf..d52cf8c884 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -104,7 +104,7 @@ if (defined('IN_CRON')) if (!file_exists($phpbb_root_path . 'config.' . $phpEx)) { - die("<p>The config.$phpEx file could not be found.</p><p><a href=\"$phpbb_root_path/install/index.$phpEx\">Click here to install phpBB</a></p>"); + die("<p>The config.$phpEx file could not be found.</p><p><a href=\"{$phpbb_root_path}install/index.$phpEx\">Click here to install phpBB</a></p>"); } require($phpbb_root_path . 'config.' . $phpEx); |