From afad755f938c3ff287bf677dc55a952655ab1720 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Sun, 23 Jul 2006 21:26:53 +0000 Subject: [PATCH] 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 --- phpBB/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("

The config.$phpEx file could not be found.

Click here to install phpBB

"); + die("

The config.$phpEx file could not be found.

Click here to install phpBB

"); } require($phpbb_root_path . 'config.' . $phpEx);