fix: prevent double write to file (#409)

This commit is contained in:
DvashVistrame 2020-08-04 11:30:05 +03:00 committed by GitHub
parent a6a28a6356
commit c8fff90634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -434,7 +434,6 @@ if (isset($_POST['ajax']) && !FM_READONLY) {
$writedata = $_POST['content'];
$fd = fopen($file_path, "w");
@fwrite($fd, $writedata);
$write_results = @fwrite($fd, $writedata);
fclose($fd);
if ($write_results === false){