From f0ab44a9fe429b08b9339a60467131b2f7fa4a3c Mon Sep 17 00:00:00 2001 From: billz Date: Tue, 15 Oct 2019 21:06:07 +0100 Subject: [PATCH] Minor: update comment --- includes/configure_client.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/configure_client.php b/includes/configure_client.php index 48526439..9d1e5644 100755 --- a/includes/configure_client.php +++ b/includes/configure_client.php @@ -27,8 +27,7 @@ function DisplayWPAConfig() if (preg_match('/delete(\d+)/', $post, $post_match)) { unset($tmp_networks[$_POST['ssid' . $post_match[1]]]); } elseif (preg_match('/update(\d+)/', $post, $post_match)) { - // NB, at the moment, the value of protocol from the form may - // contain HTML line breaks + // NB, multiple protocols are separated with a forward slash ('/') $tmp_networks[$_POST['ssid' . $post_match[1]]] = array( 'protocol' => ( $_POST['protocol' . $post_match[1]] === 'Open' ? 'Open' : 'WPA' ), 'passphrase' => $_POST['passphrase' . $post_match[1]],