1
0
mirror of https://github.com/prasathmani/tinyfilemanager.git synced 2025-07-28 12:31:10 +02:00

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

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){