From 497d0b192f8e065ec3b4d1d94764b51c924a89b8 Mon Sep 17 00:00:00 2001 From: Ermal Date: Mon, 21 Jan 2013 20:46:02 +0000 Subject: There should be always a zone given from lighty to us so try to get that first --- usr/local/captiveportal/index.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'usr/local/captiveportal') diff --git a/usr/local/captiveportal/index.php b/usr/local/captiveportal/index.php index 28931a4..e4dd59c 100755 --- a/usr/local/captiveportal/index.php +++ b/usr/local/captiveportal/index.php @@ -44,7 +44,10 @@ header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); header("Connection: close"); -$cpzone = $_REQUEST['zone']; +if ($_GET['zone']) + $cpzone = $_GET['zone']; +else if ($_POST['zone']) + $cpzone = $_POST['zone']; $cpcfg = $config['captiveportal'][$cpzone]; $orig_host = $_ENV['HTTP_HOST']; -- cgit v1.1