diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-08-12 16:57:40 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-08-12 16:57:40 +0000 |
commit | 8e90e1e4b7d468321fe56aa7915fa290fce20435 (patch) | |
tree | 4636e9aca548da47d8c2426583bd2f5e9259758b /usr/local | |
parent | 89e3d8f3b28527997473039cf975efac094d3160 (diff) | |
download | pfsense-8e90e1e4b7d468321fe56aa7915fa290fce20435.zip pfsense-8e90e1e4b7d468321fe56aa7915fa290fce20435.tar.gz |
Ensure we unlock captive portal before redirecting.
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/captiveportal/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/captiveportal/index.php b/usr/local/captiveportal/index.php index 034dfa5..075dd9f 100755 --- a/usr/local/captiveportal/index.php +++ b/usr/local/captiveportal/index.php @@ -373,9 +373,9 @@ document.location.href="{$my_redirurl}"; EOD; } else { + captiveportal_unlock(); header("Location: " . $my_redirurl); } - captiveportal_unlock(); return $sessionid; } |