add sql-query of last statement to sql-debug for debugging purposes; fix default-ssl-ip setting and allow 'none' value

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2018-02-21 12:16:50 +01:00
parent 5480fcbf5d
commit b56414ed0e
5 changed files with 29 additions and 12 deletions

View File

@@ -64,5 +64,6 @@ function getIpPortCombinations($ssl = false) {
}
function getSslIpPortCombinations() {
return getIpPortCombinations(true);
global $lng;
return array('' => $lng['panel']['none_value']) + getIpPortCombinations(true);
}