diff options
author | nashe <thomas@chauchefoin.fr> | 2017-07-13 13:04:28 +0100 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2017-07-13 13:04:28 +0100 |
commit | 8406cec349ca59a62004efe3bc01124a609219fa (patch) | |
tree | 8e5d30a7217da0f23cd372da2adf3fb940885c46 /install.php | |
parent | 6f3a001bfa95b1a0ee3ecc867d1ab8a52051b014 (diff) | |
download | planet-8406cec349ca59a62004efe3bc01124a609219fa.tar planet-8406cec349ca59a62004efe3bc01124a609219fa.tar.gz planet-8406cec349ca59a62004efe3bc01124a609219fa.tar.bz2 planet-8406cec349ca59a62004efe3bc01124a609219fa.tar.xz planet-8406cec349ca59a62004efe3bc01124a609219fa.zip |
Add an option to disable feed certificate check
Diffstat (limited to 'install.php')
-rwxr-xr-x | install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install.php b/install.php index 07437d3..2c417d5 100755 --- a/install.php +++ b/install.php @@ -33,7 +33,8 @@ if (file_exists(__DIR__ . '/custom/config.yml') && isset($login) && isset($passw 'nohtml' => 0, 'postmaxlength' => 0, 'cachedir' => './cache', - 'debug' => false + 'debug' => false, + 'checkcerts' => true, ); $CreatePlanetConfig = new PlanetConfig($config); |