mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Update safefilerewrite with PHP_EOL
This commit is contained in:
parent
1008f83cc4
commit
3f9b422f5f
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ function write_php_ini($array, $file)
|
|||
if (is_array($val)) {
|
||||
$res[] = "[$key]";
|
||||
foreach ($val as $skey => $sval) {
|
||||
$res[] = "$skey = $val";
|
||||
$res[] = "$skey = $sval";
|
||||
}
|
||||
} else {
|
||||
$res[] = "$key = $val";
|
||||
|
@ -44,7 +44,7 @@ function safefilerewrite($fileName, $dataToSave)
|
|||
|
||||
//file was locked so now we can store information
|
||||
if ($canWrite) {
|
||||
fwrite($fp, $dataToSave);
|
||||
fwrite($fp, $dataToSave.PHP_EOL);
|
||||
flock($fp, LOCK_UN);
|
||||
}
|
||||
fclose($fp);
|
||||
|
|
Loading…
Reference in a new issue