From 8267c9b10a72142e2d68273dab601a9a686dfc2a Mon Sep 17 00:00:00 2001 From: billz Date: Tue, 12 Mar 2019 07:32:17 +0000 Subject: [PATCH] Bugfix --- includes/hostapd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/hostapd.php b/includes/hostapd.php index e07d8845..e3f40c94 100755 --- a/includes/hostapd.php +++ b/includes/hostapd.php @@ -661,7 +661,7 @@ function SaveHostAPDConfig($wpa_array, $enc_types, $modes, $interfaces, $status) if ($wifiAPEnable == 1) { // Enable uap0 configuration in dhcpcd for Wifi client AP mode $config = PHP_EOL.'# RaspAP uap0 configuration'.PHP_EOL; - $config.= 'interface=uap0'.PHP_EOL; + $config.= 'interface uap0'.PHP_EOL; $config.= 'static ip_address=192.168.50.1/24'.PHP_EOL; $config.= 'nohook wpa_supplicant'.PHP_EOL; } else {