[ticket/9830] Redirect to install directly when config.php does not exist.

PHPBB3-9830
This commit is contained in:
Igor Wiedler 2010-09-16 21:57:25 +02:00
parent d874c32374
commit 6bfae1cd1a

View file

@ -123,12 +123,10 @@ if (defined('IN_CRON'))
$phpbb_root_path = dirname(__FILE__) . DIRECTORY_SEPARATOR; $phpbb_root_path = dirname(__FILE__) . DIRECTORY_SEPARATOR;
} }
if (!file_exists($phpbb_root_path . 'config.' . $phpEx)) 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>");
}
require($phpbb_root_path . 'config.' . $phpEx); require($phpbb_root_path . 'config.' . $phpEx);
}
if (!defined('PHPBB_INSTALLED')) if (!defined('PHPBB_INSTALLED'))
{ {