From 40bc21a04b6b9d72c3d286cb700670c8e14b3d4a Mon Sep 17 00:00:00 2001 From: billz Date: Sat, 28 Dec 2019 00:05:59 +0000 Subject: [PATCH] Allow channel input up to 64 (testing) --- includes/hostapd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/hostapd.php b/includes/hostapd.php index 418286fb..0015d711 100755 --- a/includes/hostapd.php +++ b/includes/hostapd.php @@ -94,7 +94,7 @@ function SaveHostAPDConfig($wpa_array, $enc_types, $modes, $interfaces, $status) return false; } - if (intval($_POST['channel']) < 1 || intval($_POST['channel']) > 48) { + if (intval($_POST['channel']) < 1 || intval($_POST['channel']) > 64) { error_log("Attempting to set channel to '".$_POST['channel']."'"); return false; }