summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/voucher.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/voucher.inc b/etc/inc/voucher.inc
index 932a515..512c0e2 100644
--- a/etc/inc/voucher.inc
+++ b/etc/inc/voucher.inc
@@ -291,9 +291,10 @@ function voucher_expire($voucher_received) {
/* Check if this voucher has any active sessions */
$cpentry = captiveportal_read_db("WHERE username = '{$voucher}'");
- if (!empty($cpentry)) {
+ if (!empty($cpentry) && !empty($cpentry[0])) {
if (empty($cpzoneid) && !empty($config['captiveportal'][$cpzone]))
$cpzoneid = $config['captiveportal'][$cpzone]['zoneid'];
+ $cpentry = $cpentry[0];
captiveportal_disconnect($cpentry,null,13);
captiveportal_logportalauth($cpentry[4],$cpentry[3],$cpentry[2],"FORCLY TERMINATING VOUCHER {$voucher} SESSION");
$unsetindexes[] = $cpentry[5];
OpenPOWER on IntegriCloud