8 lines
177 B
PHP
8 lines
177 B
PHP
<?php
|
|
$path = PATH_SITE.'/cache/imgcache/';
|
|
$file = $_REQUEST['q'];
|
|
if(file_exists($path.$file)){
|
|
header("Content-type: image/png");
|
|
print file_get_contents($path.$file);
|
|
}
|
|
?>
|