Update file_read.php

This commit is contained in:
FusionPBX 2019-08-21 02:31:59 -06:00 committed by GitHub
parent 94ee21c6e8
commit 4af41c97ec
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
//get the file name
$file_name = $_POST["file"];
$file_name = str_replace ("\\", "/", $filename);
$file_name = str_replace ("\\", "/", $file_name);
//get the contents of the file
$handle = fopen($file_name, "r");