[add] load cache/config/options.php if exist.

This commit is contained in:
Knah Tsaeb 2013-05-31 13:32:51 +02:00
parent e557660d28
commit 05b32af487

View file

@ -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);
@ -339,7 +343,7 @@ function savePass($passOne, $passTwo, $token) {
$GLOBALS[\'config\'][\'salt\'] = \''.$confSalt.'\';
$GLOBALS[\'config\'][\'pwd\'] = \''.$confPwd.'\';
?>';
file_put_contents('cache/config/genConf.php',$confFile);
file_put_contents('cache/config/genConf.php', $confFile);
}
header("Location:?");
}
@ -377,7 +381,7 @@ function printThumbShot($file) {
header("Content-type: image/png");
header('Expires: ', gmdate('D, d M Y H:i:s', time()).' GMT');
echo file_get_contents($file.'_thumb.png');
exit() ;
exit();
}
function getPage($page) {