forked from leftypol/leftypol
Moved messy $config initialization from inc/config.php to inc/functions.php.
This commit is contained in:
parent
4afd2c7cb2
commit
66b08bafef
2 changed files with 9 additions and 27 deletions
|
@ -25,6 +25,13 @@
|
|||
if(!isset($_SERVER['REMOTE_ADDR']))
|
||||
$_SERVER['REMOTE_ADDR'] = '0.0.0.0';
|
||||
|
||||
$arrays = Array('db', 'cache', 'cookies', 'error', 'dir', 'mod', 'spam', 'flood_filters', 'wordfilters', 'custom_capcode', 'custom_tripcode', 'dnsbl', 'dnsbl_exceptions', 'remote', 'allowed_ext', 'allowed_ext_files', 'file_icons', 'footer', 'stylesheets', 'additional_javascript', 'markup');
|
||||
|
||||
$config = Array();
|
||||
foreach($arrays as $key) {
|
||||
$config[$key] = Array();
|
||||
}
|
||||
|
||||
require 'inc/config.php';
|
||||
if (file_exists('inc/instance-config.php')) {
|
||||
require 'inc/instance-config.php';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue