mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Allow ath or wi interfaces to use hostap correctly
This commit is contained in:
parent
9ba517a2d3
commit
074d5eb4a7
@ -125,8 +125,8 @@ function wireless_config_print() {
|
||||
<td class="vtable"><select name="mode" class="formfld" id="mode">
|
||||
<?php
|
||||
$opts = array();
|
||||
if (stristr($optcfg['if'], "wi" == true) ||
|
||||
stristr($optcfg['if'], "ath") == true)
|
||||
if (strstr($optcfg['if'], "wi") ||
|
||||
strstr($optcfg['if'], "ath"))
|
||||
$opts[] = "hostap";
|
||||
$opts[] = "BSS";
|
||||
$opts[] = "IBSS";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user