2009-08-27 07:20:05 +00:00
|
|
|
<?php
|
2009-09-28 10:15:13 +00:00
|
|
|
$path = PATH_SITE.'/cache/imgcache/';
|
2009-08-27 07:20:05 +00:00
|
|
|
$file = $_REQUEST['q'];
|
|
|
|
if(file_exists($path.$file)){
|
|
|
|
header("Content-type: image/png");
|
|
|
|
print file_get_contents($path.$file);
|
|
|
|
}
|
|
|
|
?>
|