Fixed up a small config bug
This commit is contained in:
parent
2c3b5d1dc2
commit
971a473e09
|
@ -303,32 +303,4 @@
|
||||||
|
|
||||||
// Always act as if they had typed "noko" in the email field no mattter what
|
// Always act as if they had typed "noko" in the email field no mattter what
|
||||||
$config['always_noko'] = false;
|
$config['always_noko'] = false;
|
||||||
|
|
||||||
$config['url_match'] = '/^' .
|
|
||||||
(preg_match($config['url_regex'], $config['root']) ? '' :
|
|
||||||
(@$_SERVER['HTTPS']?'https':'http') .
|
|
||||||
':\/\/'.$_SERVER['HTTP_HOST']) .
|
|
||||||
preg_quote($config['root'], '/') .
|
|
||||||
'(' .
|
|
||||||
str_replace('%s', '\w{1,8}', preg_quote($config['board_path'], '/')) .
|
|
||||||
'|' .
|
|
||||||
str_replace('%s', '\w{1,8}', preg_quote($config['board_path'], '/')) .
|
|
||||||
preg_quote($config['file_index'], '/') .
|
|
||||||
'|' .
|
|
||||||
str_replace('%s', '\w{1,8}', preg_quote($config['board_path'], '/')) .
|
|
||||||
str_replace('%d', '\d+', preg_quote($config['file_page'], '/')) .
|
|
||||||
'|' .
|
|
||||||
preg_quote($config['file_mod'], '/') .
|
|
||||||
'\?\/.+' .
|
|
||||||
')$/i';
|
|
||||||
|
|
||||||
if($config['root_file']) {
|
|
||||||
chdir($config['root_file']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if($config['verbose_errors']) {
|
|
||||||
error_reporting(E_ALL);
|
|
||||||
ini_set('display_errors', 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -42,6 +42,15 @@
|
||||||
$config['image_deleted'] = $config['dir']['static'] . 'deleted.png';
|
$config['image_deleted'] = $config['dir']['static'] . 'deleted.png';
|
||||||
if(!isset($config['image_zip']))
|
if(!isset($config['image_zip']))
|
||||||
$config['image_zip'] = $config['dir']['static'] . 'zip.png';
|
$config['image_zip'] = $config['dir']['static'] . 'zip.png';
|
||||||
|
|
||||||
|
if($config['root_file']) {
|
||||||
|
chdir($config['root_file']);
|
||||||
|
}
|
||||||
|
|
||||||
|
if($config['verbose_errors']) {
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
ini_set('display_errors', 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function sprintf3($str, $vars, $delim = '%') {
|
function sprintf3($str, $vars, $delim = '%') {
|
||||||
|
|
Loading…
Reference in New Issue