From 716d10e0eb8533019d12c9316ab66044906a76e1 Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Thu, 7 Jan 2016 11:45:12 -0200 Subject: Make sure httpsname is a valid domain to avoid breaking nginx conf --- src/etc/inc/system.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/etc/inc/system.inc') diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc index 9d02a1e..30f7410 100644 --- a/src/etc/inc/system.inc +++ b/src/etc/inc/system.inc @@ -1182,7 +1182,8 @@ function system_generate_nginx_config($filename, $cp_hostcheck .= "\t\t}\n"; } } - if (isset($config['captiveportal'][$captive_portal]['httpsname'])) { + if (isset($config['captiveportal'][$captive_portal]['httpsname']) && + is_domain($config['captiveportal'][$captive_portal]['httpsname'])) { $cp_hostcheck .= "\t\tif (\$http_host = {$config['captiveportal'][$captive_portal]['httpsname']}) {\n"; $cp_hostcheck .= "\t\t\tset \$cp_redirect no;\n"; $cp_hostcheck .= "\t\t}\n"; -- cgit v1.1