1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 09:20:58 +01:00

infinity/smart-build: fix order of loading

This commit is contained in:
czaks 2015-04-07 00:04:55 +02:00
parent ef8ef2c0b4
commit e3a8308e00

View File

@ -7,8 +7,6 @@
*
* You can copy values from config.php (defaults) and paste them here.
*/
require_once "instance-functions.php";
// Note - you may want to change some of these in secrets.php instead of here
// See the secrets.example.php file
$config['db']['server'] = 'localhost';
@ -203,6 +201,9 @@ $config['report_captcha'] = true;
// 8chan specific mod pages
require '8chan-mod-config.php';
// Load instance functions later on
require_once 'instance-functions.php';
// Load database credentials
require "secrets.php";