[add] load cache/config/options.php if exist.
This commit is contained in:
parent
e557660d28
commit
05b32af487
1 changed files with 10 additions and 6 deletions
|
@ -19,7 +19,7 @@ $GLOBALS['config']['defaultUrl'] = 'https://duckduckgo.com/';
|
|||
// default size for thumbnail
|
||||
$GLOBALS['config']['defaultThumbSize'] = '120x90';
|
||||
// generate only thumbnail or generate thumbnail + 1280x1024 image
|
||||
$GLOBALS['config']['onlyThumb'] = true;
|
||||
$GLOBALS['config']['onlyThumb'] = false;
|
||||
// list of available size for thumb
|
||||
$GLOBALS['config']['thumbSize'] = array(
|
||||
's' => '120x90',
|
||||
|
@ -35,6 +35,10 @@ $GLOBALS['config']['disableExec'] = false;
|
|||
// Enable log for success, suspect, error
|
||||
$GLOBALS['config']['log'] = false;
|
||||
|
||||
if (file_exists('cache/config/options.php')) {
|
||||
require 'cache/config/options.php';
|
||||
}
|
||||
|
||||
if (get_magic_quotes_gpc()) {
|
||||
function stripslashes_deep($value) {
|
||||
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
|
||||
|
|
Loading…
Reference in a new issue