diff options
author | Ermal <eri@pfsense.org> | 2011-02-08 14:18:02 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2011-02-08 14:18:02 +0000 |
commit | 8f29b8923411e3d4a1cbec520c385c6dad91490a (patch) | |
tree | 8c1771fead32cc0dae29d9ca9475763f62afde8e /usr | |
parent | 9552450897319ab9e8810bd1a487d2936122c2d3 (diff) | |
download | pfsense-8f29b8923411e3d4a1cbec520c385c6dad91490a.zip pfsense-8f29b8923411e3d4a1cbec520c385c6dad91490a.tar.gz |
Resolves #1264. Read even the httpsname option from config so it displays correctly.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/services_captiveportal.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/local/www/services_captiveportal.php b/usr/local/www/services_captiveportal.php index 3b3ad12..faaeb37 100755 --- a/usr/local/www/services_captiveportal.php +++ b/usr/local/www/services_captiveportal.php @@ -82,6 +82,7 @@ $pconfig['radmac_secret'] = $config['captiveportal']['radmac_secret']; $pconfig['reauthenticate'] = isset($config['captiveportal']['reauthenticate']); $pconfig['reauthenticateacct'] = $config['captiveportal']['reauthenticateacct']; $pconfig['httpslogin_enable'] = isset($config['captiveportal']['httpslogin']); +$pconfig['httpsname'] = $config['captiveportal']['httpsname']; $pconfig['preauthurl'] = strtolower($config['captiveportal']['preauthurl']); $pconfig['cert'] = base64_decode($config['captiveportal']['certificate']); $pconfig['cacert'] = base64_decode($config['captiveportal']['cacertificate']); |