mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-05-24 00:24:07 +03:00
Check for newly added configuration options
Fix typo in default config file Closes #40
This commit is contained in:
parent
c70e0b19a1
commit
a8fadba0e0
2 changed files with 11 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue