1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

parse interface config ini the same as in 6e33e4c (#348)

when showing network config. this makes the proper
radio button be checked.
This commit is contained in:
glaszig 2019-08-10 12:38:44 +02:00
parent 6286595898
commit 63c3fc57f0

View File

@ -12,7 +12,7 @@ if(isset($_POST['interface'])) {
touch(RASPI_CONFIG_NETWORKING.'/'.$int.'.ini');
}
$intConfig = parse_ini_file(RASPI_CONFIG_NETWORKING.'/'.$int.'.ini');
$intConfig = parse_ini_file(RASPI_CONFIG_NETWORKING.'/'.$int.'.ini', false, INI_SCANNER_RAW);
$jsonData = ['return'=>1,'output'=>['intConfig'=>$intConfig]];
echo json_encode($jsonData);