Check for newly added configuration options

Fix typo in default config file

Closes #40
This commit is contained in:
Mark Schouten 2015-04-17 15:17:25 +02:00
parent c70e0b19a1
commit a8fadba0e0
2 changed files with 11 additions and 1 deletions

View file

@ -14,6 +14,16 @@ if (!isset($authmethod) or !preg_match('/^(xapikey|userpass|auto)$/', $authmetho
$blocklogin = TRUE;
}
if (!isset($apiproto) or !preg_match('/^http(s)?$/', $apiproto)) {
$errormsg = "The value for \$apiproto is incorrect in your config. Did you configure it?";
$blocklogin = TRUE;
}
if (!isset($apisslverify) or !preg_match('/^[01]$/', $apisslverify)) {
$errormsg = "The value for \$apisslverify is incorrect in your config. Did you configure it?";
$blocklogin = TRUE;
}
if (!isset($authdb)) {
$errormsg = "You did not configure a value for the setting \$authdb in your config";
$blocklogin = TRUE;