Browse Source

Don't overwrite configs when loading

pull/40/head
Savetheinternet 13 years ago
parent
commit
f8e7c0ceb9
  1. 59
      inc/functions.php

59
inc/functions.php

@ -9,32 +9,39 @@
require 'instance-config.php'; require 'instance-config.php';
} }
$config['post_url'] = $config['root'] . $config['file_post']; if(!isset($config['post_url']))
$config['post_url'] = $config['root'] . $config['file_post'];
$config['url_match'] = '/^' .
(preg_match($config['url_regex'], $config['root']) ? '' : if(!isset($config['url_match']))
(@$_SERVER['HTTPS']?'https':'http') . $config['url_match'] = '/^' .
':\/\/'.$_SERVER['HTTP_HOST']) . (preg_match($config['url_regex'], $config['root']) ? '' :
preg_quote($config['root'], '/') . (@$_SERVER['HTTPS']?'https':'http') .
'(' . ':\/\/'.$_SERVER['HTTP_HOST']) .
str_replace('%s', '\w{1,8}', preg_quote($config['board_path'], '/')) . 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('%s', '\w{1,8}', preg_quote($config['board_path'], '/')) . preg_quote($config['file_index'], '/') .
str_replace('%d', '\d+', preg_quote($config['file_page'], '/')) . '|' .
'|' . str_replace('%s', '\w{1,8}', preg_quote($config['board_path'], '/')) .
preg_quote($config['file_mod'], '/') . str_replace('%d', '\d+', preg_quote($config['file_page'], '/')) .
'\?\/.+' . '|' .
')$/i'; preg_quote($config['file_mod'], '/') .
'\?\/.+' .
$config['dir']['static'] = $config['root'] . 'static/'; ')$/i';
$config['image_sticky'] = $config['dir']['static'] . 'sticky.gif'; if(!isset($config['dir']['static']))
$config['image_locked'] = $config['dir']['static'] . 'locked.gif'; $config['dir']['static'] = $config['root'] . 'static/';
$config['image_deleted'] = $config['dir']['static'] . 'deleted.png';
$config['image_zip'] = $config['dir']['static'] . 'zip.png'; if(!isset($config['image_sticky']))
$config['image_sticky'] = $config['dir']['static'] . 'sticky.gif';
if(!isset($config['image_locked']))
$config['image_locked'] = $config['dir']['static'] . 'locked.gif';
if(!isset($config['image_deleted']))
$config['image_deleted'] = $config['dir']['static'] . 'deleted.png';
if(!isset($config['image_zip']))
$config['image_zip'] = $config['dir']['static'] . 'zip.png';
} }
function sprintf3($str, $vars, $delim = '%') { function sprintf3($str, $vars, $delim = '%') {

Loading…
Cancel
Save