Update webapp.php

This commit is contained in:
Namhyeon Go 2019-02-24 23:34:03 +09:00 committed by GitHub
parent c2818b644a
commit 8dedeb286b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ if($is_static_file == true) {
if(file_exists($appfile)) {
set_header_content_type($end_era);
$fp = fopen($appfile, "r") or set_error_exit("file does not exists");
$fp = fopen($appfile, "r") or die("file does not exists");
while(!feof($fp)) {
echo fread($fp, 8192);
}