diff options
author | bcyrill <cyrill@bannwart.info> | 2013-01-16 15:47:49 +0100 |
---|---|---|
committer | bcyrill <cyrill@bannwart.info> | 2013-01-16 15:47:49 +0100 |
commit | d5ac388b66fa6015b62411d74e2329d9130bdbac (patch) | |
tree | 3403cddfe722aa11070bdc9030d367fe0b0d71e5 /etc/inc | |
parent | 84086442a2fa40b0fba12cf00a935144de3c5e71 (diff) | |
download | pfsense-d5ac388b66fa6015b62411d74e2329d9130bdbac.zip pfsense-d5ac388b66fa6015b62411d74e2329d9130bdbac.tar.gz |
Missing return statement
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/captiveportal.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/inc/captiveportal.inc b/etc/inc/captiveportal.inc index 7ed2647..ded0fec 100644 --- a/etc/inc/captiveportal.inc +++ b/etc/inc/captiveportal.inc @@ -1608,6 +1608,8 @@ function portal_hostname_from_client_ip($cliip) { if ($listenporthttp != 80) $ourhostname .= ":" . $listenporthttp; } + + return $ourhostname; } /* functions move from index.php */ |