1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

Fix fclose() incorrect variable

fclose() is using incorrect variable $new_conf should be $fp to properly close fopen
This commit is contained in:
Joe Mattos 2017-02-27 01:01:03 -05:00 committed by GitHub
parent 86d663d9ac
commit a0235ff66b

@ -30,7 +30,7 @@ if (!empty($_POST['save'])) {
$new_conf = $mktemp_output[0];
$fp = fopen($new_conf, 'w');
fwrite($fp, str_replace("\r\n", "\n", $_POST['v_config']));
fclose($new_conf);
fclose($fp);
exec (VESTA_CMD."v-change-sys-service-config ".$new_conf." spamassassin ".$v_restart, $output, $return_var);
check_return_code($return_var,$output);
unset($output);