Delete assetproxy.php

This commit is contained in:
Namhyeon Go 2018-09-24 04:26:29 +09:00 committed by GitHub
parent 22cae6055f
commit fabf156d65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +0,0 @@
<?php
if(!defined("_DEF_RSF_")) set_error_exit("do not allow access");
loadHelper("webpagetool");
$path = str_replace("../", "", get_requested_value("path"));
$server_path = "./" . $path;
$client_path = base_url() . $path;
if(file_exists($server_path)) {
$response = get_web_page($client_path, "get");
echo $response['content'];
}