Redirect to install page when configuration doesn't exist.

这个提交包含在:
Tomasz 2022-01-18 23:13:52 +01:00 提交者 Peter Goodhall
父节点 860adbb7ab
当前提交 f9fb38c649

查看文件

@ -255,8 +255,9 @@ if ( ! function_exists('get_config'))
}
elseif ( ! $found)
{
set_status_header(503);
echo 'The configuration file does not exist.';
// set_status_header(301);
header('Location: install/');
// echo 'The configuration file does not exist.';
exit(3); // EXIT_CONFIG
}